PDA

View Full Version : Integration with vBulletin - Complete Wordpress/Vbulletin Bridge - Share Users And Postings


Pages : 1 2 3 4 5 [6]

dailyyeah
11-09-2008, 04:08 AM
Has anyone successfully integrated the avatars from Vbulletin into the Comment section of wordpress? I would like to know how :D

XManuX
11-11-2008, 02:03 PM
Avatars are not amongst the vBulletin data that vBridge collects.

In order to use them on your Wordpress pages, along with infos like User's Title or so, you need to modify the vBridge query that gets data from vBulletin replies.

Below is more a technical draft than a failsafe HowTo.

- Open vbbridge.php and look for the following query:

$sql = "select postid, username, userid, pagetext, title FROM " . TABLE_PREFIX . "post where threadid = '$results->vb_threadid' order by dateline";

This is the one that gets data about every vBulletin replies to your Wordpress article.

Replace it by:

$sql = "SELECT postid, p.username, p.userid, pagetext, p.title, u.avatarid, u.avatarrevision, a.avatarpath
FROM " . TABLE_PREFIX . "post AS p
LEFT JOIN " . TABLE_PREFIX . "user AS u ON u.userid = p.userid
LEFT JOIN " . TABLE_PREFIX . "avatar AS a ON a.avatarid = u.avatarid
WHERE threadid = '$results->vb_threadid' ORDER BY dateline";

As you can see, we are now getting much more data from vBulletin : the user's 'avatarid', 'avatarrevision', 'avatarpath' and even the user's title.

- Save your vbbridge.php.

- Now the quick and dirty part : there are probably vBulletin functions to handle avatars properly, since i haven't had a look at that yet, here is some bad way to handle most of the avatars.

- Open your theme php file where you already did some copy/paste with the vbbridge code to handle comments.

- Look for :

<?php
foreach ($vbridge[replies] as $reply) {
?>


- Below, you may add this code :

<?php
if ($reply[avatarpath]) {
echo "<img src=\"" . get_option('vbb_VBURL') . "/" . $reply[avatarpath] ."\" alt=\"avatar\" />";
} else {
echo "<img src=\"" . get_option('vbb_VBURL') . "/customavatars/avatar" . $reply[userid] ."_" . $reply[avatarrevision] . ".gif\" alt=\"avatar\" />";
}
?>


Keep in mind that it's an early version and that a more complete way of handling avatars should be achieved, especially when no avatars are selected.

For infos here is the part of code that i used a few years ago to handle avatars displaying in non-vb pages (not vbbridge related !)


$query ="SELECT user.avatarid, user.avatarrevision AS avrevis, avatarpath, NOT ISNULL(filedata) AS hascustom, customavatar.dateline
FROM user AS user
LEFT JOIN avatar AS avatar ON avatar.avatarid = user.avatarid
LEFT JOIN customavatar AS customavatar ON customavatar.userid = user.userid
WHERE user.userid =". $prof_uid;
$result = requete($query);
$row = mysql_fetch_array($result);

// on a renseign? le champ de chemin d'avatar
if (!empty($row['avatarpath']))
{
$prof_avatar = "<img src=\"http://ladln.org/boards/{$row['avatarpath']}\" alt=\"avatar\" />";
}
// sinon on check si on a upload? un avatar custom
else if ($row['hascustom'])
{
if (strlen($row['hascustom'] > 10))
{
$prof_avatar = "<img src=\"http://ladln.org/boards/image.php?u=$prof_uid&amp;dateline=$row[dateline]\" alt=\"avatar\" />";
} else {
$prof_avatar = "<img src=\"http://ladln.org/boards/customavatars/avatar{$prof_uid}_{$row['avrevis']}.gif\" alt=\"avatar\" />";
}
}
else if ($row['avrevis']>0)
{
$prof_avatar = "<img src=\"http://ladln.org/boards/customavatars/avatar{$prof_uid}_{$row['avrevis']}.gif\" alt=\"avatar\" />";
}
else
{
$prof_avatar = "[N.A]";
}

nymyth
11-14-2008, 07:29 PM
Nymyth, I don't see an integration on your home page. I am specifically looking for a way to have the latest news as well as latest forum posts on your home page.
Does it make sense?

Thanks
Not sure what you mean, it looks bridged to me. Starting a blog entry creates a forum thread, its just the posts dont go back and forth...is it supposed to and i messed something up?

Also, when you turn off the forum the blog has the vbulletin message show up without the style....any ideas?

wafriend
11-15-2008, 03:02 AM
When I create my test post in Wordpress and publish it, I get the following error:


Fatal error: Cannot redeclare class vB_DataManager in /home/xxxxxxxx/public_html/v3b/forums/includes/class_dm.php on line 21

xxxxxxxx = my username

Does anyone have any ideas what is causing this error?

cashaddy
11-16-2008, 04:16 PM
good evening mates!! :)

i am pretty happy, that the bridge is working nearly perfectly with my setup!! (wordpress 2.6.3, vbulletin 3.7.4)

also i got handsome with some path problems and fixed them, really fast.

but still one error is occuring. a last damn error, and i don't know how to fix it! here the problem:

the bridge works mainly... (postings are integrated to the forum, i can edit and delete them...) but if i want to submit a new post there occurs always this error:

Warning: Cannot modify header information - headers already sent by (output started at path/wp-content/plugins/vbbridge.php:94) in path/wp-includes/pluggable.php (Line 770)

got any suggestions??

would be REALLY happy if anyone got already fixed this problem and could tell me a way to solve it.

in the meanwhile i will dig the code :)!

XManuX
11-17-2008, 12:20 PM
First i would suggest that you try this :

1°) Disable all your Wordpress plugins (except VbBridge of course !) and try again.
-> If it works, then try re-enabling your WP plugins one by one, testing again after each reactivated WordPress plugin.

2°) If it is still not working and provided you've installed some vbulletin add-ons, still keep your WP plugins disabled and now disable all your VB add-ons. And try again.
-> If it works. follow step 3
-> If it still doesn't work, you've run out of luck and you can reactivate everything and look into the code.

3°) Re-activate all of your WordPress plugins. And test again
-> If it works, your WP plugin are not causing the pbr, go to step 4.
-> If it doesn't work, go back to step 1

4°) Your Wordpress Plugins are not causing the error. Now try re-enable your vBulletin addons 1 by 1 and at each one reactivated, check if the error is back or not.
-> If it works, you're lucky ! turning everything OFF then ON again solved your pbr.
-> If it doesn't work. The last vBulletin add-on re-activated is likely the one you should check.

wafriend
11-19-2008, 02:36 PM
I've been trying to get this working for three days, I must have reinstalled everything at least five or six times, but I keep getting the same error message:

Warning: chdir() [function.chdir]: No such file or directory (errno 2) in /home/x/public_html/v3b/wp-content/plugins/vbbridge.php on line 29
cannot include /home/x/public_html/v3b/wp-admin/global.php. You should check your path! Turning Plugin Off

where x is the name of my webhosting account.

I'm trying to get this running with a default installation of vBulletin. There are no plugins, nothing has been created, no forums, a straight out of the box installation and straight out of the box installation of Wordpress.

I perform the installation, go to the settings and then select vBridge Settings, I key the following values in for each field:

vb user id: 1
vb username: airtime
vb forum id: 2
forum url: http://y.com/v3b/forums
forum relative path: /forums
Database Prefix: vB_
Turn Plugin on: Yes
Turn Autointegrate on: No
Post articles to forum: Yes
Excerpt forum post: no

I click submit. I get the message options saved. I then Reading and get the above message.

Does anyone have any idea why I'm getting this message. The files are in the:
/v3b/wp-content/plugins directory and I'm not using a subdomain.

This is really beginning to baffle me. I'm sure I'm missing something small, I just don't know what.

wafriend
11-20-2008, 05:43 AM
I finally figured it out, the relative path should be set to /v3b/forums/. I needed to add the trailing slash, something not mentioned in the documentation and not reflected in the example to the right of the field.

By the way, your documentation isn't current with version 2.6.3 of Wordpress. The settings menu is no longer "options" it is now settings. It is also "vbridge settings" and not "vbridge options"

dreamhost
11-20-2008, 08:57 PM
I have managed to get the bridge installed and working.

The only question I have is that I have noticed it works kind of strange when it comes to logging my users into the wordpress part.

scenario 1:
1. log into vb
2. goto wordpress
your not logged into wordpress

HOWEVER:
If I then click on the 'login' button on wordpress, it takes me to the vb homepage, which says I am logged in.
Then if I go back to the wordpress I am indeed logged in.

Only way for me to login to wordpress is if I follow the steps above exactly.

If I simply log into vb and then goto wordpress, I am not logged in.
I have to click the wp login button, and then return to wp to be logged in.

Is this how the author intended it?
kinda doubt it but as I have already mapped usergroups and tested posting, and logged in, it seems to work, just kinda strange.

great plugin btw THANK YOU!

tjpeople
11-22-2008, 05:59 PM
Awesome hack.

Sorry if this is a stupid question but why does this bridge VB users into WordPress?

Why would you want to do this? It's great having the forum comments showing under the WP posts and the new WP getting posted to VB at the same time, but why does WP need to know about the users?

I've set mine up but not enabled user bridging, I don't like the idea of having two user databases, what do I loose in doing this?

For those who like valid sites, there are a few missing " " around URLs and incorrect & signs in URLs in the readme codes.

Jafo: You can add my site if you wish http://www.malcolminthemiddle.co.uk/

rcadden
11-23-2008, 01:52 PM
I've noticed an issue with scheduled posts in Wordpress 2.6.2 - If I have a scheduled post, the forum thread isn't created correctly, and thus readers can't comment.

I've also noticed, annoyingly, that if I go edit a post later, I have to manually re-choose the appropriate forum/subforum, or else it gets republished to my 'Lounge' (which I set as the default).

Is there any way to get both of these issues fixed? I'm mostly concerned with the scheduled posts, as we use that heavily on my site.

Anyone else use the post scheduling in Wordpress and having troubles with this bridge not creating the forum thread for scheduled posts?

DDIG
11-24-2008, 04:33 PM
Thanks a lot for this plugin!

I'm currently experimenting with it. Biggest issue so far is that I'd like a link to the forum thread to read further and to let people comment on topics on vBulletin. Also, syncing vBulletin comments with Wordpress comments would be very nice.

Is this possible?

DDIG
11-25-2008, 12:19 PM
Never mind, I read the readme and it's all in there.

Thanks again, this seems to work just great!

tjpeople
11-25-2008, 03:54 PM
Bug Report: "soft deleted" posts in vb still show up in wordpress

pypons
12-03-2008, 08:46 PM
Hi thanks for the plugin.
I have lose my admin right on wordpress (admin user exist on wordpress nd vb)... what i do to grant the permission ad show the dashboard ?

thanks a lot

DDIG
12-03-2008, 09:00 PM
Read thread...

Read readme.txt...

reimic
12-06-2008, 04:27 AM
Hello

First of all: Thanks for your awsome bridge! Its really fantastic! :)

My Script completly works but vb users in the "administrator" group cant't login into wordpress dashboard. in wordpress i activated the mapping and under "useres" i map the group "administrator" as "administrator".

i also made a test post.

but when admin users in wordpress try to login the only redirected to the forum.

maybe you have a tipp for me. i dont know now how to go on.

thanks so much!!

roots549
12-16-2008, 04:04 PM
Wordpress 2.7
Vbulletin 3.7.4

Everything worked very well, up until I tried to integrate the comments. I found the right code wordpress code to replace with the vbull comment code from the readme text file, and successfully swapped it our. Looked great, but when a user on the wordpress blog clicks my comments link they are sent to the forum and get this;

"No Thread specified. If you followed a valid link, please notify the administrator"

Seems this would be a simple fix within the vbulletin comment code, from the readme, but for the life of me I cannot figure it out.

Help would be greatly appreciated, I am oh so close.

eric

Edit, I have been told that there is no longer any support for this hack, that I am doomed trying to make it work with said versions of wp and vbull. Please say it ain't so!!!!

Edit II, going to take this to the 3.7 thread, figured out that even though the hack is the same, I am in the wrong place.

CKDexterHaven
12-16-2008, 08:59 PM
Here's the error:
Warning: chdir() [function.chdir]: No such file or directory (errno 2) in /home/laurierk/public_html/wp-content/plugins/vbbridge.php on line 29

I get this all the time throughout the entire site.

I think this may be because we are in a development area.

In the settings I have:
forum URL: http://w02.merchbox.com/~laurierk/vbulletin
Forum relative path: /vbulletin

Is this fixable here?

Thanks.

CKDexterHaven
12-16-2008, 09:07 PM
Here's the error when trying to access vBridge user settings in the admin:

Fatal error: Call to a member function query_read() on a non-object in /home/laurierk/public_html/wp-content/plugins/vbbridge.php on line 318

Again, is this because we are in a development area:
http://w02.merchbox.com/~laurierk/vbulletin

Any developers out there want a job to make this work for us?

:(

hydn
12-17-2008, 07:00 PM
We have 500,000 members. Not big, but how long does this integration take? Shouldn't be a problem right?

CKDexterHaven
12-19-2008, 04:09 PM
Here's the error when trying to access vBridge user settings in the admin:

Fatal error: Call to a member function query_read() on a non-object in /home/laurierk/public_html/wp-content/plugins/vbbridge.php on line 318

Again, is this because we are in a development area:
http://w02.merchbox.com/~laurierk/vbulletin

Any developers out there want a job to make this work for us?

:(

Anyone out there have an answer for us? We'd be very happy to hire someone to install this for us. Anyone interested?

CKDexterHaven
12-19-2008, 04:09 PM
Here's the error:
Warning: chdir() [function.chdir]: No such file or directory (errno 2) in /home/laurierk/public_html/wp-content/plugins/vbbridge.php on line 29

I get this all the time throughout the entire site.

I think this may be because we are in a development area.

In the settings I have:
forum URL: http://w02.merchbox.com/~laurierk/vbulletin
Forum relative path: /vbulletin

Is this fixable here?

Thanks.

Anyone out there have an answer for us? We'd be very happy to hire someone to install this for us. Anyone interested? :mad:

Bjorn2404
12-20-2008, 09:32 PM
Anyone out there have an answer for us? We'd be very happy to hire someone to install this for us. Anyone interested? :mad:

Did you try manually changing the path like it suggests in the Limitation section above?

Will.Spencer
12-27-2008, 03:20 AM
No plans at this time.

I'd like to ask the same question, but in a different way.

What would it cost to contract you to extend this plugin to support Wordpress Mu?

fmckinnon
12-30-2008, 05:40 PM
Hey Everyone,
I guess I'm a little confused as to exactly what this plugin will do. Let me explain our situation, and see if this would be our best option:

We have a forums-based environment at http://www.theworshipcommunity.com/forums which is obviously driven by VB.

In addition, at http://www.theworshipcommunity.com, we have a WordPress-driven CMS, with articles.

I don't care anything about whether or not these WP-created articles are put over in vbulletin as a thread ... actually, I'd rather that NOT happen ...

However, I'd like to turn off commenting in Wordpress unless you are REGISTERED, and then, make the registration be vbulletin ... so, for example, if I register as user "fmckinnon", then I can post new threads in vbulletin, but can also post a comment in the WordPress area.

Is that what this will do? Basically, I just don't want to manage two sets of visitors - forum members (in the vb database) and wordpress commenters (who we don't currently have a database, as they aren't required to login or register in WordPress to comment).

Thanks!
Fred

fmckinnon
12-31-2008, 01:22 AM
Hey Everyone -
UPDATE - installed, and it seems to work great - easy, simple install.

However, I log myself out of both WordPress and vBulletin, and I've setup WordPress so that you can't comment unless you are registered.

When you get the link that says you must register to comment, the link simply goes to my forums homepage - I'd rather it go directly to the registration page (the register.php) page ... is this possible, and if so, how do I code that in?

Otherwise - someone new to the site (but somewhat familiar w/ Wordpress) may try to leave a comment, click the register button, and wonder why they've been taken over to the forums page.

ALSO - just noticed, now, when I attempt to login to /wp-admin ... it redirects me to the /forums w/o giving me an opportunity to login to /wp-admin?

Thanks,
Fred

wolfyman
01-01-2009, 12:54 PM
I just tried to upgrade to the latest release by uploading the new vbridge.php file to my plugins directory, and I got this error on my wordpress page:

Fatal error: Class 'vBulletinHook' not found in C:\xampp\htdocs\sites\mysite.com\forums\includes\c lass_bbcode.php on line 2402

wolfyman
01-05-2009, 07:29 PM
I've tried several times to add an author to wordpress - it keeps reverting the user to "Subscriber".

Can I just use phpmyadmin and add an author?

Anyone?

killkev
01-18-2009, 04:58 PM
I got everything up and running OKAY however whenever I go to edit posts it shows that there are 3 published but underneath that it says "no posts found". When I deactivate the plugin it shows the posts as being there. Anyway to get around this?

DeirdreBunny
01-20-2009, 02:49 PM
Greetings!

Because I am using a certain theme, the code to search and replace for comments to work with the bridge:

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')); ?>



Do not appear to exist. The only similar strings I have found, were located in 3 separate theme files:

archive.php:
<?php comments_popup_link('Leave a Comment', '1 Comment', '% Comments'); ?>

blog.php:
<?php comments_popup_link('Leave a Comment', '1 Comment', '% Comments'); ?>

page_section.php:
<?php comments_popup_link('Leave a Comment', '1 Comment', '% Comments'); ?>


Other lines with the word 'comment' contained within:

index.php:
<?php comments_template(); // Get wp-comments.php template ?>

So I'm at a loss for which I am supposed to be replacing to get comments on vB to post to WP.

Does any of this info sound like it might be the right line to replace? 3 of the strings are identical, and I am assuming that the archive.php string wouldn't be the one.

Thanks so much!

~D

G3MM4
01-21-2009, 08:19 PM
Does this work with vBulletin 3.8.0?

limey
01-30-2009, 03:17 AM
I run mine the same way. No need for the extra overhead.

Awesome hack.

Sorry if this is a stupid question but why does this bridge VB users into WordPress?

TazeredBlackMan
02-02-2009, 06:44 PM
This may sound like a stupid question, and for that I apologize?but when I read it, it isn?t 100% clear to me.

I want to share users and passwords when I bridge wordpress and vbulletin, but I don?t want to change the formatting of the comments, I want the area where the comments exist to remain the same, although it would be very nice if I could integrate my forum with the wordpress so they don?t have to register twice. My question is: When they go to comment, is it possible that they can have the same user name and password, and the comments still are where they normally would, not necessarily making a new thread on Vbulletin.

Also, say I add another WP g to my website at www.xyz.com/blog...could I also integrate that database with the forum as well?

I hope this is clear.

Thanks.

laztrix
02-10-2009, 11:49 PM
Hi,

I have a Vbulletin 3.8.0 and Wordpress 2.7.0 installed on my server.

when I try to activcate the plugin I get this error:

Your submission could not be processed because a security token was missing.

If this occurred unexpectedly, please inform the administrator and describe the action you performed before you received this error.

http://forum.diviksfilm.org/portal/wp-admin/options-general.php?page=vbbridge.php

How can I fix this?

Jafo232
02-14-2009, 04:55 AM
Just a quick note to everyone, I am rewriting this plugin and will hopefully finish testing this weekend.

The new version (IV) will include the following changes so far:

Integration is complete. Once you turn integration on, usernames and passwords from the forum can be used.

Users and admins can login from the WP login area.

If you log into VB or WP, then you remain logged in, until you log out (from either).

I hope to have time to rewrite the comment code instructions (for the default WP template).

I will be posting it in the 3.8 forum, but will also post a link here.

adairen
02-14-2009, 06:00 PM
Just a quick note to everyone, I am rewriting this plugin and will hopefully finish testing this weekend.

The new version (IV) will include the following changes so far:

Integration is complete. Once you turn integration on, usernames and passwords from the forum can be used.

Users and admins can login from the WP login area.

If you log into VB or WP, then you remain logged in, until you log out (from either).

I hope to have time to rewrite the comment code instructions (for the default WP template).

I will be posting it in the 3.8 forum, but will also post a link here.

sweet. looking forward to this.

Jafo232
02-14-2009, 09:20 PM
I have released the update here:

https://vborg.vbsupport.ru/showthread.php?t=205388

Chirag patel
05-27-2009, 11:54 PM
Can this import posts that are already in one of the forums that I want to integrate to?

int20
05-31-2009, 04:49 PM
How I can import very big count of users from my Wordpress? Re-registering for ~2k of users is impossible? ImpEx can't import only users.

illusime
06-22-2009, 12:50 AM
I tried integrating the mod. After I finish integrating, the contributor names disappeared on my wordpress articles. Also it seems to be having some problem with the featured content pugin. Can anyone help? Thanks.

pspcrazy
07-11-2009, 06:56 PM
The updates version has too many unfixed problems sadly, so we're stuck with this version. I've been getting hacked a lot lately, please can anyone look through this version and see any security issues?

RvG2
08-25-2009, 11:31 AM
This mod seems to work better than 4.0.13 on WP 2.8.4 and vB 3.8.4

Installed.

caygri
04-06-2010, 08:35 PM
the bridge not fuction when I impost user= autori
is there a mood for write the user on blog?

Jafo232
01-21-2011, 02:48 PM
I have not supported this modification for several reasons:
I didn't need it anymore. Plain and simple.
I am a busy IT contractor who has a FULL schedule and just do not have time to donate to this project. (nor do I have time to support it for YOU even for $$)
VB 4.x is a disappointment on a major scale for me. I refuse to support it. I noticed 99% of the questions here lately are about that. No it does not work with 4.x, and if it does work with it, it was not my intention. I am so pissed off at IB about what in my opinion is an outright concerted effort to destroy vBulletin that I could care less if it works with it or not. Maybe they will fix it someday, but I can only hold my breath for so longThis all being said, one of my clients is now in need of this to work with 3.8 and has sponsored me start over on it. He has agreed to allow me to release this work to the public, however not here. For now, the only support I will be offering on this is at my website:

http://www.lampwrights.com/showthread.php?t=41

Please make sure you READ the statement first because the new product is a little different but still as always: free.

realchaos1
01-21-2011, 07:12 PM
I have not supported this modification for several reasons:
I didn't need it anymore. Plain and simple.
I am a busy IT contractor who has a FULL schedule and just do not have time to donate to this project. (nor do I have time to support it for YOU even for $$)
VB 4.x is a disappointment on a major scale for me. I refuse to support it. I noticed 99% of the questions here lately are about that. No it does not work with 4.x, and if it does work with it, it was not my intention. I am so pissed off at IB about what in my opinion is an outright concerted effort to destroy vBulletin that I could care less if it works with it or not. Maybe they will fix it someday, but I can only hold my breath for so longThis all being said, one of my clients is now in need of this to work with 3.8 and has sponsored me start over on it. He has agreed to allow me to release this work to the public, however not here. For now, the only support I will be offering on this is at my website:

http://www.lampwrights.com/showthread.php?t=41

Please make sure you READ the statement first because the new product is a little different but still as always: free.

Kind sir,

If I ever run into you IRL, it would be the highest priority that I shake your hand, buy you and your colleagues a round of beer, offer you a wide selection of high class hookers, cigars, and beaver pelt.

Cheers to you and all your future endeavors, may the clouds of tomorrow shine bright with silver linings!

-Eddi Hughes

dmm2020
01-26-2011, 01:06 AM
It would be nice to see features like this support the most recent version of a product rather than sticking with prior versions. The post I saw that the developer did not intend to support 4.x is rather disappointing. That is like developing for IE6. Hopefully, someone else picks up on this and does what those of use using the newer versions of vBulletin needs.

Jafo232
01-26-2011, 09:16 AM
It would be nice to see features like this support the most recent version of a product rather than sticking with prior versions. The post I saw that the developer did not intend to support 4.x is rather disappointing. That is like developing for IE6. Hopefully, someone else picks up on this and does what those of use using the newer versions of vBulletin needs.

For what purpose? VB 4 has their own CMS.. Oh yeah, I forgot, it sucks like the rest of the product.

wacnstac
03-04-2011, 10:19 PM
I would pay to have this upgraded to work with VB 3.8.X and WP 3.1

MissKalunji
04-04-2011, 12:48 PM
Question,

What happens to the users that i already have in Wordpress?

They can't login?

Jafo232
04-04-2011, 01:01 PM
I do not offer support here, only at http://www.lampwrights.com.

Lostboyfan
05-09-2011, 03:13 PM
For what purpose? VB 4 has their own CMS.. Oh yeah, I forgot, it sucks like the rest of the product.

You don't have to use vb's CMS. I turned mine off and use vbadvanced for the time being. However I would like to to see this Mod get supported for 4.X.X since some people are using it.

-----Edited------

Never mind. this mod does work with vbulletin 4.

ChromeDome
06-29-2011, 01:07 PM
Never mind. this mod does work with vbulletin 4.

How well does this work for vb4? Anyone care to share a link to a site where this is set up?

MissKalunji
07-02-2011, 10:25 PM
How well does this work for vb4? Anyone care to share a link to a site where this is set up?
I believe he meant "doesn't" work...

klaush
07-02-2011, 10:37 PM
Did you read the posts in this thread?

Easy live is easy living! Let?s do the other my work! Sorry, but reading threads complete is healthy and effective!

How well does this work for vb4? Anyone care to share a link to a site where this is set up?

ChromeDome
07-03-2011, 04:21 PM
Did you read the posts in this thread?

Easy live is easy living! Let?s do the other my work! Sorry, but reading threads complete is healthy and effective!

Did I read all 86 pages? Really? Why bother to post if you aren't going to help at all. And speak proper English when you attempt to insult someone.

Lostboyfan
07-03-2011, 06:15 PM
How well does this work for vb4? Anyone care to share a link to a site where this is set up?


It works very well for VB 4. Just install it the same way as the vb3 way and it should work. Give it try on my gaming website.

http://www.gamingforest.com/

If you need still need extra help to put it on your forums. Send me a PM and I will be happy to help you :).

Manoel J?nior
07-20-2011, 12:56 PM
This mod is working fine on my forum, but how do I increase the avatars and answers?

8thos
08-27-2011, 11:38 AM
It works very well for VB 4. Just install it the same way as the vb3 way and it should work. Give it try on my gaming website.

http://www.gamingforest.com/

If you need still need extra help to put it on your forums. Send me a PM and I will be happy to help you :).

That's a beautiful website.

M4GN3T
12-13-2011, 12:05 AM
Latest WP 3.3 breaks the bridge, users loosing usernames and such and first user will be seen as 'admin'.

MissKalunji
12-13-2011, 03:21 AM
He's not supporting this version anymore....

Rolll
12-17-2011, 12:32 AM
I've just hidden in 593 line of vbbrdige.php " _fill_user( $user );" but i'm not really sure that's solution... but now it's work :D

amjadz4
03-06-2012, 06:41 AM
Guys I need your support. All of you who want this plugin to work for the latest versions of vB and WP with extr features that are currently not available and more ... Go here on this page and put 3 votes.

http://wpmudev.uservoice.com/forums/148158-wpmu-dev-new-development-requests/suggestions/2651341-vbulletin-forum-integration

Come on people, lets get this plugin made for vB 4! They just need votes! :D

insanewhip
04-20-2012, 04:00 AM
Anyone want to set this up for me? I've tired and its WAY over my head.. Donation will be provided!

jdj
09-13-2012, 08:44 AM
I'm interested in this mod for vB4, also for vB5 Connect. I appreciate that vB5 Connect is only just out.

x_55
10-07-2012, 10:06 PM
Thanks..!

MuraTh
02-27-2013, 11:02 PM
vbulletin integration for izmir ila?lama (http://www.arlamuhendislik.com.tr) my page please

Nirjonadda
03-24-2013, 05:32 PM
Does work on 4.2.0? Please any update for work on 4.2.0

MissKalunji
03-24-2013, 05:45 PM
it doesn't work and doens't plan on doing so. you can search VBSSO , as an alternative