The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
NNTP Gateway for Usenet ( Newsgroups ), Mailing Lists Details »» | |||||||||||||||||||||||||||
NNTP Gateway for Usenet ( Newsgroups ), Mailing Lists
Developer Last Online: Nov 2023
The latest version: V2.3.2 (31 Oct 2004)
What is it? This hack provides a gateway from vBulletin forums to the USENET. It allows forum members to read newsgroup messages as well as to send posts to the newsgroups. In a nutshell, it turns vBulletin forums into a basic function news reader. For an added bonus, this package also supports mailing list archive and forum to mailing list gateway. The software retrieves messages from a pop3 account and import them into the forums threaded. It also allows a forums user to send messages to the mailing list by the forum posting interface. Why? The gateway will be appreciated by forum members who do not know how to set up a news reader, or people who do not have port 119 open in their network. A forum interface to read and post news are often considered to be better than a news reader. The gateway adds more contents to your forums and allows the members to interact with wider audience. It is common to see new users signing up to use this feature. History This hack is basically a hacked vB2 NNTP gateway written by Gilby to work with vB3. The original hack can be found here: https://vborg.vbsupport.ru/showthrea...7&page=1&pp=15 Features Some of the features and improvement include:
Future development
What do you need and do not need? You do not need to edit vB php files if you use two bookmarks You need to edit one vB php file to insert two lines of code if you want direct click links within AdminCP. No need to run SQL. Installation Basically the AdminCP interfaces take care of installation as well as upgrade in the background. Back up your database first. The scripts can modify your database without alerting you! Please follow the instructions in the readme.txt file for more details. Support Please post your support questions to this thread. Please check the FAQ in the third post within this thread first. ================== UPDATES ====================== Jul 31 2004 (release version 2.2.0)
Please note, when you manually run the script, you must turn on the debug mode. Otherwise nothing will be displayed on the screen. To run as debug mode: http://forums.yourdomain.com/gateway.php?debug=1 25 Oct 2004
31 Oct 2004 Fixed bugs running the gateway by the vB3 Scheduled Tasks 1 March 2004 Uploaded the new zip file. It contains one or two bug fixes. Show Your Support
|
Comments |
#912
|
||||
|
||||
Quote:
|
#913
|
|||
|
|||
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 |
#914
|
|||
|
|||
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. |
#915
|
|||
|
|||
Would it be possible to use this to share posts between sites? How would it be done?
|
#916
|
|||
|
|||
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. |
#917
|
|||
|
|||
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. |
#918
|
|||
|
|||
Quote:
|
#919
|
|||
|
|||
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 |
#920
|
|||
|
|||
I'm gonna go ahead and test the 3.5 version on my test version. I'll let you all know how things go.
|
#921
|
|||
|
|||
the 3.5 version works good an does support attachments from the testing I've done....
|
Thread Tools | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|