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 |
#782
|
|||
|
|||
Quote:
Quote:
|
#783
|
|||
|
|||
Quote:
Well i edited the index.php file Here i attached both files...the edited one is the one i use... i tried posting from vbulletin but the post didnt show up as comment in wp... i tried making a comment in wp but it didnt show up as a post in vbulletin |
#784
|
|||
|
|||
Not sure what you did, but you can see it working inline here:
http://www.xboxcircle.com/ Just click an article title that has more than 0 comments. |
#785
|
|||
|
|||
wordpress MU- any possibility of supporting this in the future?
|
#786
|
|||
|
|||
No.
|
#787
|
|||
|
|||
I am unable to get back into wp-admin after saving my settings.
Here's the error message: Fatal error: Cannot redeclare is_valid_email() in /home/public_html/forum/includes/functions.php on line 715 |
#788
|
|||
|
|||
Sounds like you have a current plugin in wp that is conflicting..
|
#789
|
|||
|
|||
Hello,
I just want to add a conversation in the forum when a blog entry is published. I do not need all the user bridging stuff (and I need trackbacks!). Any hint how to strip the bridge off to this? Regards, Dennis |
#790
|
||||
|
||||
Hello,
i want to use vB for comments. I have following wordpress-theme and i can't find the code posted in the readme-file. No code like that in the theme-files... Code:
IF YOU WANT TO USE VB For comments: Find in any of the following templates: index.php, single.php, page.php. <!-- start post loop --> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> ADD the following code after it: <?php ### Vbridge Call $vbridge = Comment_Handler($post->ID); ### ?> Find this code (or similar code indicating the comment section of your template): <?php wp_link_pages(); ?> <!-- <?php comments_popup_link(__('0 Comments'), __('1 Comments'), __('% Comments')); ?> And replace with this: <?php #### Vbridge Replacement code for comments if ($vbridge[id] > 0) { ?> <div class="comments"> <?php if(is_single()) { if (is_array($vbridge[replies])) { ?> <br /><br /> <h3 id="comments">Comments:</h3> <ol class="commentlist"> <?php foreach ($vbridge[replies] as $reply) { ?> <li class="<?php echo $oddcomment; ?>" id="comment-<?php comment_ID() ?>"> <?php echo $vbridge[vb_parser]->do_parse($reply[pagetext], false, true); ?> <small class="commentmetadata"> <img src="<?php bloginfo('stylesheet_directory'); ?>/images/comment_arr.gif" alt="" /> by <cite> <a href=<?php echo get_option('vbb_VBURL') ?>/member.php?u=<?php echo $reply[userid] ?>><?php echo $reply[username]; ?></a></cite> </small><br /> </li> <?php /* Changes every other comment to a different class */ if ('alt' == $oddcomment) $oddcomment = ''; else $oddcomment = 'alt'; } } ?> </ol> <?php } ?> <a href=<?php echo get_option('vbb_VBURL') ?>/showthread.php?t=<?php echo $vbridge[id] ?>>(<?php echo intval($vbridge[count]) ?>) comments</a> | <a href=<?php echo get_option('vbb_VBURL') ?>/newreply.php?do=newreply&noquote=1&t=<?php echo $vbridge[id] ?>>Add your comments</a> </div> <?php } ##End Vbridge Replacement ?> You can also now link authors usernames to their VB profile page. Wherever you see the code: <?php the_author() ?> You can replace that with something like: <?php if ($vbridge[id] > 0) { ?> <a href=<?php echo get_option('vbb_VBURL') ?>/member.php?u=<?php echo $vbridge[thread_starter] ?>><?php the_author() ?></a> <?php } else { the_author(); } ?> I hope somebody can help me... |
#791
|
|||
|
|||
Yeah, don't turn auto-integration on.
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|