vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   Integration with vBulletin - Complete Wordpress/Vbulletin Bridge - Share Users And Postings (https://vborg.vbsupport.ru/showthread.php?t=134521)

Jafo232 12-20-2006 10:00 PM

Complete Wordpress/Vbulletin Bridge - Share Users And Postings
 
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:
  • DOES NOT and WILL NEVER support Wordpress MU.
  • Wordpress and Vbulletin scripts must reside on the same physical server.
  • Wordpress and Vbulletin must use the same domain name.
  • Stable Wordpress Version greater than or equal to 2.5.
  • If your WP login name is the same as your VB username, this user will NOT be ported! If this was the case, you could lose your WP admin rights if there was an error, or if you deactivated the plugin.
  • DOES work for Vbulletin 3.7.
Limitations:
  • Please don't ask if it works for any BETA versions of Vbulletin. I do not know and will not convert this to the latest version of VB (whatever it is at the time you are reading this) until the version is released as non-beta.
  • If you delete a user, you must do so in both Wordpress and Vbulletin.
  • If you are using XMLRPC to post with applications such as Windows Live Writer, you must change the password of the author in the WORDPRESS admin cp, after the user is ported over from VB. If you are not integrating users, then you do not have to.
  • Chances are, this will not work when VB and Wordpress are located in different sub domains. I.E. forum.yoursite.com - blog.yoursite.com. Cookie issue.
  • I did the best I could in determining your forums file path with the script. There may be certain script setups that cannot find the file path properly, in which case you may get errors that the script cannot find or open /config.php. If this is the case, please HARDCODE your ABSOLUTE path to the forum in vbridge.php.

    To do this find:

    Code:

    ## If you are having path problems, uncomment this next variable and define the path
    ## NO TRAILING SLASH!
    # $vwd = '/some/path/to/your/forum';

    And uncomment the last line, and change the path to your forums path:

    Code:

    ## If you are having path problems, uncomment this next variable and define the path
    ## NO TRAILING SLASH!
    $vwd = '/some/path/to/your/forum';

Common Mistakes When Installing:
  • Using two different host names causes problems. If your forum URL contains www.yourdomain.com, then your wordpress blog URL MUST contain the www. part of www.yourdomain.com also. This goes for any other host name. Browsers are finnecky when it comes to cookies (as they should be).
  • Editors generally EDIT, not write. In Wordpress, editors don't show up in the post author drop down. This has nothing to do with this plugin, that is Wordpress code.
  • Make sure you DO NOT create a subdirectory for this plugin in the wp-content/plugins directory. Just upload it directly there.
  • If the admin username in Vbulletin is the same as the one in Wordpress (i.e. Admin), that user will NOT be able to login to the WP dashboard.
  • If you do not map users before you turn auto-integrate on, the plugin has no idea whether your allowed into the dashboard.
  • If you all of a sudden can't login to the dashboard, see the above two common mistakes.
  • FOLLOW the directions and make a test post first. Being in a rush and not testing will most likely turn out bad for you.
  • When you create a test user in VB to test mapping users, the test user MUST have an email address. If a VB users email address is blank, they will not map.
UPDATES:

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:
  • Reworked the code so it uses the $vbulletin object throughout the code especially during the bridging process.
  • Users are bridged whether they checked the "Remember Me" box or not.
  • Removed a couple of SQL calls that became redundant.
  • Addressed a bug where if a user logged out of the dashboard, it only logged them out of VB.
  • Added Inline Comments capability. Comments posted to the forum (using VB for comments) will now appear at the bottom of a WP Post when viewing the post.
  • Author user names can now be linked to their VB profile page if desired.
  • Added option to turn off posting to forum. All this really does is remove the "Select Forum To Post To" option when writing a post. (There you go AxisOverdrive :) )
  • The $vbulletin object should now be available in all templates and most plugins.
  • Fixed a bug where deactivating any plugin would semi deactivate this plugin.
  • With the reduction in SQL calls, and the removal of now unnecessary variables, speed and memory use should be improved.
  • PLEASE READ THE UPGRADE INSTRUCTIONS IF UPGRADING!
07/17/2007
  • Fixed problem where upload iframe was a bit mangled.
  • Fixed problem where users had to refresh the dashboard once after logging in.
  • Fixed problem that arose from Wordpress 2.2.1 upgrade that would not allow activation.
  • Fixed logout issue where users would still be logged into Wordpress.
  • When a Wordpress post is deleted, so is the thread it created.
  • Added option to allow thread posted from Wordpress article to be truncated, with a linkback to the article.
  • Fixed issue when user re-activates plugin, and vb_threadid column already exists. Now checks for column first.
  • Removed a stray VB_Init() call.
  • Forums that do not allow threads will not be selectable in the drop down menu when writing a post.
  • Forums are listed out in a parent/child nested pattern.
  • (Note: 367 downloads of version 2.05)
11/29/07 - 3.00
  • Added TABLE_PREFIX throughout the script instead of the get_option('vbb_VBPRX') call. get_option('vbb_VBPRX') is now deprecated.
  • Addressed path issues by establishing $vwd first. If for some reason there are path issues on an install, the path only needs to be manually changed once, at the beginning of the script.
  • Removed call to admin_db.php which seems to no longer be necessary.
  • Changed all queries to the VB database to be handled by the $vbulletin object. This should facilitate multiple database configurations.
  • Added limited XMLRPC support.
  • Had to include a basic copy of the functions_wysiwyg.php file (functions_wysiwyg2.php) with a minor change in the sanitize_url function (now sanitize_vburl) as it conflicts with a new WP function of the same name. Otherwise, this is identical to the VB release. This was necessary to keep formatting somewhat uniform between the two.
  • Removed unnecessary globals.
  • Changed the global.php call so it always loads. $vbulletin should be available throughout the code (via global in functions).
  • Edited some code around wysiwyg functions of VB, and conversions to vbcode.
  • Added "Turn Plugin On" option.
  • Fixed an issue with the forum list on the "Write Post" page. Default forum was not being auto selected in some cases.
  • Modified from BETA so that the new functions_wysiwyg2.php file is loaded using the WP ABSPATH constant. Requires the plugin to stay in the plugins directory.
  • Fix an error message when a post was deleted in VB, then edited in WP.
12/10/07 - 3.01
  • Fixed two <? tags that should have been <?php (pointed out by Amenadiel)
03/31/08 - 3.02
  • Fixed media-upload clash for new version of Wordpress (2.5).
  • Added fix that will now delete threads in VB when the post is deleted in WP and not using Ajax delete.
  • Added code to insert a default email address if VB users email address is blank upon bridging.
04/20/08
  • Fixed a bug in user roles for the new version 2.5.1 of Wordpress.
05/08/2008
  • Fixed issue where CSS was munging scrolling text box when selecting a forum during a post
  • Fixed an issue where content encoding was getting screwey between WP and VP creating a lot of unintended characters (only on PHP installs where utf8_decode() exists (most)).
05/08/2008
  • Fixed issue where post count of a user did not change
Sites Using This Plug-In:(PM me if you want to add your site here)

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.

sanereddy 12-21-2006 07:14 PM

thanks a lot... setting up tonight

redlabour 12-21-2006 07:17 PM

Great !

Mark Wegner 12-21-2006 07:23 PM

I have an existing wordpress install and I'd like to add vbulletin as the comment system using this bridge. Is there an installation script I can use to automatically add all my wordpress posts as vbulletin posts? And also to add all the users registered i wordpress to vbulletin?

Thanks, and nice bridge!

Mark

Jafo232 12-21-2006 07:35 PM

Quote:

Originally Posted by Mark Wegner (Post 1143018)
I have an existing wordpress install and I'd like to add vbulletin as the comment system using this bridge. Is there an installation script I can use to automatically add all my wordpress posts as vbulletin posts? And also to add all the users registered i wordpress to vbulletin?

Thanks, and nice bridge!

Mark

Hmm, no. This is for new wordpress posts meaning it will not affect your old posts. Users already registered with Wordpress will have to register with vbulletin (or login if they are already registered).

TheBlackPoet 12-21-2006 08:55 PM

i will be getting this tonight when i get home... and wordpress.... thanks in advance

Oddjob 12-21-2006 11:15 PM

Id love to see a running example of this....

CBrown 12-22-2006 12:12 AM

wow.. Great. Going to install and give it a go. I've got just the thing...

lexx27 12-22-2006 12:35 AM

Great hack

I have a small problem. Im in the middle if the installation where I have to do the test post.

The problem is that wp when I press publish downloads post.php instead of posting the test post. When I deactivate the plugin everything is working again,

+bug: When I deactivate and then activate again the plugin a database error for duplicated columns appears.

Jafo232 12-22-2006 01:02 AM

Quote:

Originally Posted by lexx27 (Post 1143189)
Great hack

I have a small problem. Im in the middle if the installation where I have to do the test post.

The problem is that wp when I press publish downloads post.php instead of posting the test post. When I deactivate the plugin everything is working again,

+bug: When I deactivate and then activate again the plugin a database error for duplicated columns appears.

What version of Wordpress are you using?

lexx27 12-22-2006 01:04 AM

2.0.5

Jafo232 12-22-2006 01:05 AM

When you open the file you download, what does the file say in a text editor?

lexx27 12-22-2006 01:10 AM

Well it is an empty post.php :)

Jafo232 12-22-2006 01:12 AM

Quote:

Originally Posted by lexx27 (Post 1143202)
Well it is an empty post.php :)

Does the post get posted to Vbulletin?

Do you have any other plugins installed? Especially any that work during the posting process?

lexx27 12-22-2006 01:41 AM

No it doesnt get posted.

I have these plugins installed (the green are activated):

bada_bing 12-22-2006 02:39 AM

Will this work on VB 3.5.3 ?

Jafo232 12-22-2006 04:29 AM

Quote:

Originally Posted by lexx27 (Post 1143216)
No it doesnt get posted.

I have these plugins installed (the green are activated):

Hmm, not sure. I haven't had any other reports of this. My assumption is, it is conflicting with another plugin.

Jafo232 12-22-2006 04:30 AM

Quote:

Originally Posted by bada_bing (Post 1143232)
Will this work on VB 3.5.3 ?

I would think so. I havent tested on .3, but I do not see why it wouldn't.

projectego 12-22-2006 08:24 AM

/me clicks install

010081 12-22-2006 10:41 AM

thankx just installed let lee how it works.

lexx27 12-22-2006 12:13 PM

Thanks for the help. I will make some tests and report the conflict. :)

bang 12-24-2006 10:30 AM

installed. but how is it different from this hack?

axisoverdrive 12-24-2006 10:09 PM

This is a fantastic plugin! Thanks for all the great work, Jafo232. I've been waiting for a plugin like this for months, and i even tried to get one developed myself (never got done).

I installed your plugin, and i can create posts/ make comments perfectly fine. one thing i'm having trouble with is that if I login via vBulletin, Wordpress does not currently show that i'm logged in with that vbulletin account. Wordpress still gives me the "click here to login" link, which forwards me back to the forum. Sounds like a cookie issue, but i'm not certain. Thoughts?

Thanks in advance!

PS. Also, i've noticed that the newly created user in vbulletin does not show up in the user list for wordpress, and vice versa. Using vb 3.6.2 and wordpress 2.0.5

Sulquendi 12-25-2006 08:28 AM

Pretty nice hack :)

Only problem for me right now : i have cleaned up my cookies and now i cannot access the admin panel of wordpress, the login button redirect me to vbulletin (i've already signed up on vbulletin !) and accessing admin panel directly with /wp-admin redirects me also on the boards -_-.

Any idea ?

klaush 12-25-2006 03:46 PM

First of all "Merry XMAS" to all of you!

If you need this bridge for sharing the user-database of vb with wp, this hack is not useable. I don´t know if it´s a cookie-problem or something else!

We need the sharing of the user-database of vb with wp as priority in a short time.

So is anyone able to solve this?

We´ll pay up to 50 Euro if it works without any problems for 3.5.6 and wp 2.05.

Thanks!

Jafo232 12-26-2006 03:31 AM

Quote:

Originally Posted by bang (Post 1144390)
installed. but how is it different from this hack?


This one works, and also shares user info.

Jafo232 12-26-2006 03:33 AM

Quote:

Originally Posted by klaush (Post 1144915)
First of all "Merry XMAS" to all of you!

If you need this bridge for sharing the user-database of vb with wp, this hack is not useable. I don?t know if it?s a cookie-problem or something else!

This is not true, it does work. You must make sure you turn on the setting ""Turn Auto-Integrate" on. The WP and VB scripts MUST reside on the same domain name so they can share cookies.

If you made any edit to the standard cookie setup on Vbulletin, then perhaps you may experience issues, but otherwise you should be all set.

gilshafir 12-26-2006 08:37 AM

As soon as I turn auto-integrate on my rss2 feed breaks, is anyone else having the same problem?

Jafo232 12-26-2006 12:51 PM

Quote:

Originally Posted by abcdefgary (Post 1145186)
When you say that the WP and VB scripts must reside on the same domain name, what exactly does this mean? That both of these must be the same? So www.domain.com/forums and www.domain.com/blog

Thanks.

Yes, those are the same domains.

Harley D 12-26-2006 04:20 PM

I am using VB 3.5.4
WordPress 2.05
VB & WP are on 2 different domains, on the same server but different databases. I have hard codded the RELATIVE file directory to VB.
I'm getting errors, and just a note, I don't care if my users share logins from WP to VB. I just want my posts in WP to post to VB.
With that out of the way, here are the errors I get.
There errors show after when clicking on the WP Vbridge user settings.
1) WordPress database error: [Table 'wagnert_wrdp1.srtcalib_usergroup' doesn't exist]
SELECT * FROM srtcalib_usergroup

2) Warning: Invalid argument supplied for foreach() in /home/myblogdomain/public_html/blog/wp-content/plugins/vbbridge.php on line 199

And this error when posting:
1) Fatal error: Cannot redeclare is_valid_email() (previously declared in /home/myblogdomian/public_html/blog/wp-content/plugins/email/email.php:301) in /home/myforumdomain/public_html/forum/includes/functions.php on line 640

Is there a way remove the necessary portions of code to prevent these errors? and still have the WP posts, post in VB?

Thanks for the hack, been wanting this one for a long time.

Jafo232 12-26-2006 04:30 PM

Quote:

Originally Posted by Harley D (Post 1145368)
I am using VB 3.5.4
WordPress 2.05
VB & WP are on 2 different domains, on the same server but different databases. I have hard codded the RELATIVE file directory to VB.

As it states in the lead post in this thread, they BOTH MUST reside in the same database.

You need not be on the same domain IF, and only IF, you just want to use it as a comment bridge.

gilshafir 12-26-2006 06:51 PM

This is at the end of my rss file:

</rss>
<br />
<b>Fatal error</b>: Call to a member function unlock_tables() on a non-object in <b>/home/mysite/public_html/forum/includes/functions.php</b> on line <b>4998</b><br />

Jafo232 12-26-2006 07:45 PM

Quote:

Originally Posted by abcdefgary (Post 1145411)
Hmm, I'm having a hard time getting the comments to work, I don't mean sharing users, but this code right here in the readme file:



Do I need to turn the auto-integrate thing on after I insert this code? thanks.

Do not turn auto-integrate on until comments work!

Jafo232 12-26-2006 10:24 PM

Quote:

Originally Posted by abcdefgary (Post 1145485)
no, no, no. I tested it and wrote a post, which automatically wrote that same post in my forums.

However, I want to now display how many comments there are for that thread and display the link to the thread. But I keep getting an error whenever I insert the code in the readme file in.

What error do you get?

axisoverdrive 12-26-2006 11:09 PM

Quote:

Originally Posted by Jafo232 (Post 1145154)
This is not true, it does work. You must make sure you turn on the setting ""Turn Auto-Integrate" on. The WP and VB scripts MUST reside on the same domain name so they can share cookies.

If you made any edit to the standard cookie setup on Vbulletin, then perhaps you may experience issues, but otherwise you should be all set.

Hey Jafo,

Yep. both wordpress and vb are under the same domain, and share the same database. Posting comments from WP to VB works fine. The only problem is the user databases aren't shared, and the WP login link forwards to VB, despite VB not having the same user accounts as WP. Therefore, if "auto integrate" is turned on, there's no way to get into the WP Admin page anymore.

Any ideas on what may be causing hte conflict? Anything i should check?

Thanks!

axisoverdrive 12-27-2006 03:31 AM

Quote:

Originally Posted by abcdefgary (Post 1145575)
<?php
}
##End Vbridge Replacement

Note, if you deactivate the vbridge plugin, you must remove this code.
?> <?php edit_post_link(__('Edit This')); ?>[/code]

and in the end, I get a Parse Error :confused:

Hey, abcefgary -- try removing the "Note, if you deactivate the vbridge plugin, you must remove this code." and see if you still get that same parse error.

SaN-DeeP 12-28-2006 12:14 AM

great work Jafo gonna test this now.

axisoverdrive 12-28-2006 04:13 AM

Has anyone gotten the plugin to work perfectly yet? If so, could you post a link to your functioning site?

Thanks!

Jafo232 12-28-2006 11:08 PM

Quote:

Originally Posted by axisoverdrive (Post 1145546)
Hey Jafo,

Yep. both wordpress and vb are under the same domain, and share the same database. Posting comments from WP to VB works fine. The only problem is the user databases aren't shared, and the WP login link forwards to VB, despite VB not having the same user accounts as WP. Therefore, if "auto integrate" is turned on, there's no way to get into the WP Admin page anymore.

Any ideas on what may be causing hte conflict? Anything i should check?

Thanks!

The users must login via Vbulletin. When those users then go to the wordpress page, they should be logged in under the same username as they have in VB.

Jafo232 12-28-2006 11:09 PM

Quote:

Originally Posted by abcdefgary (Post 1145654)
thanks! that works perfectly.

I have two more questions, though, sorry.

1.) Is there any way to "grab" the comments from the thread in vBulletin and post them in the comments.php ?
2.) Is there a "most commented post" plugin I could display in the sidebar if I use vBridge?

Thanks.

#1 - No. You either use the comment code (That you replaced in your template file) or not. If you choose not to use it, then comments will be like they always were.

#2 - I have no idea.


All times are GMT. The time now is 06:15 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02363 seconds
  • Memory Usage 1,880KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (15)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete