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 |
#952
|
|||
|
|||
This looks like a great plugin, looking forward to getting it installed this weekend.
Question - is it possible to sync ONLY posts with vBulletin, not users? We definitely want all new Wordpress posts to start a new thread and be cross-linked from Wordpress, but we have no need for vBulleting users to login to Wordpress. Thanks! Dan |
#953
|
|||
|
|||
Everything works great, I just have a lame layout question.
Right now my post footers look like: Quote:
Quote:
Code:
<?php $recent = new WP_Query("cat=4&showposts=1"); while($recent->have_posts()) : $recent->the_post();?> <?php ### Vbridge Call $vbridge = Comment_Handler($post->ID); ### ?> <h2><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2> <?php the_content();?><p>Posted by <?php the_author(); ?> | <?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> </div> <?php } ##End Vbridge Replacement ?> <?php edit_post_link('(Edit)', '', ''); ?></p><div style="clear:both;"></div> <?php endwhile; ?> |
#954
|
|||
|
|||
Quote:
Code:
<?php $recent = new WP_Query("cat=4&showposts=1"); while($recent->have_posts()) : $recent->the_post();?> <?php ### Vbridge Call $vbridge = Comment_Handler($post->ID); ### ?> <h2><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2> <?php the_content();?><p> <?php #### Vbridge Replacement code for comments if ($vbridge[id] > 0) { ?> <div class="comments"> Posted by <?php the_author(); ?> | <?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> | <?php edit_post_link('(Edit)', '', ''); ?> </div> <?php } ##End Vbridge Replacement ?> </p><div style="clear:both;"></div> <?php endwhile; ?> What was going wrong was you had the Posted by: then in div="coments" you had the comments then the edit link after the </div>. So thats all i've changed. You will have to play around with it because it might not even work right but you should get the idea. |
#955
|
|||
|
|||
Quote:
|
#956
|
||||
|
||||
Does it work with 3.7 rc1 ? and will it be supported.
Are there any db changes in vbulletin or just in wordpress ? |
#957
|
|||
|
|||
Can't tell you about 3.7, wont know until 3.7 is released.
No DB changes to VB. |
#958
|
||||
|
||||
Hi all...
Well, this is a little explanation by me on how to fix the error: "you do not have enough permissions to access this site" in some NON-ENGLISH blogs/forums caused by bad mapping user procedure. For this, we will map users manually from the database with a Db Manager like PhpMyAdmin for example. First, Reinstall the plugin. After, To make the changes we need to do the following steps: Go to the table: Quote:
Quote:
Now, we must change the field "option_value" in each row for the desire User group permissions (Check the legend at the end of this post), and save. For Example : "I wish that my Vbulletin administrators can also manage the blog wordpress" MY Vbulletin AdministratorsID: 9 so... In my wordpress Database i Go to : Quote:
Quote:
And Done, my Vbulletin Administratorscan manage wordpress blog too!!! without "you do not have enough permissions to access this site" error. Note, use the following values to update fields: -- For your Wordpress ADMINS group ---> administrator -- For your Wordpress EDITORS group ---> editor -- For your Wordpress AUTHORS group ---> author -- For your wordpress CONTRIBUTOR group ---> contributor -- For your wordpress SUBSCRIBER / SUSCRIPTOR group ---> subscriber NOTE 2 : * If you add more Vbulletin Usergroups, you must be re-map the users. * DONT USE the Vbridge User Settings !!! Testing and running on Vbulletin 3.6.8 and Wordpress 2.3.3. This issue is caused by a translation in wordpress (ES_es.mo), i think. Check : http://www.dkfsoft.com/forum http://www.dkfsoft.com/blog Sorry for my english . |
#959
|
|||
|
|||
Installed.. seems to be working fine other than one issue.
Can anyone help? When users are mapped, they show up under under "Users" in WP admin, but their "role" is left blank. So, when I mapped my administrators, I had to manually go in and set their role to "Administrator." Registered Users from vbulletin are mapped over, but are not listed as Subscribers. |
#960
|
|||
|
|||
will this plugin became compatible with vbulletin 3.7?
|
#961
|
|||
|
|||
KnicksCity :
Checkhttps://vborg.vbsupport.ru/showpost.php?p=1474364&postcount=965 |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|