![]() |
Quote:
|
can someone help me here.... i have most of it all installed but the file tries to download...so i went to the ms site and attempted to edit the registry. i found the key and added a new value and got it all up to the point of adding the value data. It wont let me add HEX 0x1. Id really like to install this and get it all working...thanks in advance.
Key: HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Internet Settings Value name: IsTextPlainHonored Value type: DWORD Value data: HEX 0x1 FIXED IT....WELL ACTUALLY RAN THE FILE ON ANOTHER MACHINE |
OK?I made some more changes :)
There was an issue with form variable names on nntp_groups.php line 278 (original line 256), of the same variety as the print_forum_chooser problem on line 263 (241). This was causing problems with "Add Newsgroup", rather than "Edit"; when trying to add a newsgroup, the forum would be set to 0, rather than the forumid. Also, I replaced all instances of $vboptions['...'] with $vbulletin->options['...'] and global $vboptions with global $vbulletin in functions_nntp.php. Looks like this affects a lot of attachment stuff. I have no idea if attachments work now; perhaps someone will test it and share their results :squareeyed: My earlier post has the updated .zip file. |
Would it be possible to use this to share posts between sites? How would it be done?
|
Quote:
To speed up a bit, one can delete the index for 'msgid' in the post table, and reindex that field with a smaller size. It is quite easy to do with myphpadmin. Just set the size of the index to 10 or 15. That might(according to mysql manual) improve some speed. |
Quote:
The script tries to check if there is another instance of script running within 30 minutes from the time the last script was run. It will ignore the checking if it is over 30 minutes and considers the last run crashed. So it is important not to set up the cron job before the completion of the initial import, as the initial importation may take too much time. |
Quote:
|
Quote:
ALTER TABLE `post` DROP INDEX `msgid`; and to add a partial index for msgid: ALTER TABLE `post` ADD INDEX ( `msgid` ( 10 ) ) ; 10 means instead of indexing the whole length of the field (128), we only index the first 10 charactors. This will reduce the size of the index. The full length index is fastest at the time of retrieving, a partial index means the DB engine needs to read more lines at the time of retrieving but needs less work at writing. To people who needs to import large amount of posts in one go. I think if you disable the index building process at the time of importing, it will speed up a lot. You can then rebuild the index using the AdminCP. Bear in mind, rebuilding the index takes a VERY long time. The total time used to rebuild the index should be less than the time used to import large amount of messages and build the index at the same time. I have not done this, this is only base on the theory that it is very slow to insert records into a fulltext index table, and it is faster to build the fulltext index after all the insertions are done. If you do not need to search the imported messages, then disabling the index build will surely speed up the import. To do this, just comment out build_post_index($postid, $foruminfo); line in the /include/functions_nntp.php |
I'm gonna go ahead and test the 3.5 version on my test version. I'll let you all know how things go.
|
the 3.5 version works good an does support attachments from the testing I've done....
|
All times are GMT. The time now is 08:59 AM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|