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
Identical to this Mod here, but now for the Vbulletin 3.8 line.
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:
Changelog is included in download, here is the most recent changes: 3/09/2009
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. If you do install: Download Now
Show Your Support
|
2 благодарности(ей) от: | ||
m7sen, xuanhuy238 |
Comments |
#1182
|
|||
|
|||
This added code allows the Wordpress front page (and probably some others that calculate comment count) to show the number of replies in the vb thread.
Note: I am using WP version 3.0.1 and VB version 3.8.6 In vbbridge.php, add to the end: Code:
add_filter('get_comments_number', 'comments_count', 10, 2); ### Return Comment count function comments_count($count, $postID = false) { global $vbulletin, $vwd; $wpdb =& $GLOBALS['wpdb']; $sql = "select vb_threadid FROM " . $GLOBALS['table_prefix'] . "posts where ID = '$postID'"; $results = $wpdb->get_row($sql); $sql = "select replycount FROM " . TABLE_PREFIX . "thread where threadid = '$results->vb_threadid'"; $results2 = $wpdb->get_row($sql); return $results2->replycount; } |
#1183
|
|||
|
|||
Hi There.
I just want to find out. After the install, is it normal that the following areas in the Wordpress Admin cannot be access (Lead to a 404 error): wp-admin/users.php wp-admin/user-new.php (Running WP 3.01, VB 4.05 ) Regards Itai |
#1184
|
||||
|
||||
Yes its normal. Users are taken from vB database and not WP.
|
#1185
|
|||
|
|||
So if they login in wordpress are they automatically logged in VB and visa versa?
|
#1186
|
||||
|
||||
No, login only works via vB. If they login in vB they will automatically login in wordpress. That's why its posted here and not on wp.org.
|
#1187
|
|||
|
|||
Oh ok, thanks ... I thought it was both ways ... still a very useful plugin.
|
#1188
|
|||
|
|||
Will it work with Vbulletin version 4.05 and wordpress 3.1
Need review before i install it. Thanks |
#1189
|
|||
|
|||
Works just fine for me ... and that's what I'm using.
|
#1190
|
|||
|
|||
can someone post example of these... My wordpress site is
Code:
http://gurusecret.info VB User ID: VB Username: VB Forum ID: Forum URL: Forum Relative Path: Database Prefix: Turn Plugin On: Does your forum use Unicode (UTF-8): Thanks for yr help.... |
#1191
|
|||
|
|||
There is a set of instructions that tells you exactly what you need to fill in, which I followed.
VB User ID: (The computer ID of the default username you want to use i.e. 1) VB Username: (The actual username of the default username you want to use i.e. admin) VB Forum ID: (The computer ID of the forum you want to place the thread i.e. for General Discussions, yours could be 6?) Forum Url: http://gurusecret.info/vbforum Forum Relative Path: /vbforum Database Prefix: You need to check the actual database ... i.e. vb_ |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|