The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Complete Wordpress/Vbulletin Bridge - Share Users And Postings Details »» | |||||||||||||||||||||||||||
Complete Wordpress/Vbulletin Bridge - Share Users And Postings
Developer Last Online: Oct 2022
DOES NOT WORK FOR Vbulletin 4.x This version probably no longer works for Wordpress 3.x. I have started developing this product over and have released the NEW version here: http://www.lampwrights.com/showthread.php?t=41 This mod bridges your Vbulletin users over to Wordpress. You can also use Vbulletin as your comment engine instead of the spammy one built into Wordpress. You can display the comments inline in your post. You need not use the comment feature, if your only interested in sharing users. You can map your Vbulletin Usergroups to Wordpress Usergroups and those users will then be recognized as registered Wordpress users. For example, user "Joe" registers at your forum and logs in. Joe then clicks on your Wordpress page. Joe is instantly added to the Wordpress user base with the permissions you set for his usergroup. In otherwords, if a user comes over belonging to the "Registered User" group, you can select that he is placed in the Wordpress "Subscriber" usergroup. If you change a users group from vbulletin, it will automatically change in Wordpress. Requirements:
01/03/2007 - Fixed the unlock_tables() issue on some setups. 01/03/2007 - Fixed a bug in the script that if you used a MySQL database prefix, integration would not work. Please see this post for more information! Special thanks to axisoverdrive for giving me access to his server and letting me troubleshoot the issue! 01/05/2007 - Fixed issue where if a user saved (not published) and published later, the post would not be added to the forum. 01/05/2007 - When a post is edited, it will also be edited in the forum. 01/08/2007 - Modified slightly so when posts are edited, so are the titles (if edited). 02/07/2007 - Major modifications to new version (now 2.05). The list follows:
Special Thanks: axisoverdrive - Debugging Help, Kyraal - Paypal Donation, Kalina - Paypal Donation, Wildcard27 - Paypal Donation, Shri - Paypal Donation, pspcrazy - Paypal Donation, Tomahoochi - Paypal Donation. If you use this plug-in, and find it useful, please support us by nominating us for Mod Of The Month (MOTM) in the top right corner of this thread, or feel free to donate. Show Your Support
|
Comments |
#632
|
|||
|
|||
I installed the latest version of Wordpress (2.31) and vBulletin (3.6.8). And I made the changes that "2 X Viverridae" suggested and the errors are gone. However I can't see any forums when hitting write therefore I can't post. Anyone have any ideas?
NM, figured it out! |
#633
|
|||
|
|||
Quote:
|
#634
|
||||
|
||||
Warning: require_once(/includes/class_bbcode.php) [function.require-once]: failed to open stream: No such file or directory in /home/bnthold/public_html/blog/wp-content/plugins/vbbridge.php on line 350
Fatal error: require_once() [function.require]: Failed opening required '/includes/class_bbcode.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/bnthold/public_html/blog/wp-content/plugins/vbbridge.php on line 350 got this error resently O_o dono what how that happen |
#635
|
|||
|
|||
Problem I'm having - maybe someone who uses this plugin can help...
I want stories to be moderated, so that I can edit any typos etc that they've missed. If a user is set to contributor, they submit their story for review. However when I approve it, it shows up under my name. If same user is set to author, they can submit their story but it automatically posts it on the forum & site, so I'm unable to make typo changes. Any help? Thanks |
#636
|
|||
|
|||
Blue_Fusion: Try changing that line 350 to:
require_once('/home/bnthold/public_html/blog/includes/class_bbcode.php'); You may have to throw /forum in there after /blog or whatever your forum folder is. If anyones still having that line 446 error lemme know and I'll provide a guide to fix it - however I did it with WP 2.3 as opposed to 2.3.1 so it may not be 100% |
#637
|
|||
|
|||
Wings, I'm still having problems getting beyond the errors on line 466, so fire away and reply here or send me a personal message.
|
#638
|
|||
|
|||
marcus for the line 466 errors try this: https://vborg.vbsupport.ru/showpost....&postcount=633
|
#639
|
|||
|
|||
This mod looks really useful and exactly what I have been looking for, but I have one problem My Wordpress database and vBulletin database are separate. Is there any one that can assist me in modifying this mod to read from both databases. Failing that, how is the best way to join the two databases into one??
Thanx in advance -PB |
#640
|
||||
|
||||
Hmmm, I think I'm going to stick at the 2.2 level until this hack is fully working with 2.3.1
Or play around with it on my test board and see if I can hack it together to work properly. |
#641
|
|||
|
|||
Alright for the 466 errors you gotta hardcode the directory data. For this example, I'll say our forums are on:
/home/joesmith/forums Line 41 change: Code:
chdir($_SERVER['DOCUMENT_ROOT'] . get_option('vbb_VBRPATH')); Code:
chdir('/home/joesmith/forums'); Code:
$vwd = getcwd(); Code:
$vwd="/home/joesmith/forums"; Code:
chdir($_SERVER['DOCUMENT_ROOT'] . get_option('vbb_VBRPATH')); Code:
chdir('/home/joesmith/forums'); Code:
require_once($vwd . '/includes/class_bbcode.php'); Code:
require_once('/home/joesmith/forums/includes/class_bbcode.php'); Code:
chdir($_SERVER['DOCUMENT_ROOT'] . get_option('vbb_VBRPATH')); Code:
chdir('/home/joesmith/forums'); Code:
require_once($vwd . '/includes/functions_misc.php'); Code:
require_once('/home/joesmith/forums/includes/functions_misc.php'); |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|