vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=235)
-   -   Integration with vBulletin - Complete Wordpress/Vbulletin Bridge - Share Users And Postings (https://vborg.vbsupport.ru/showthread.php?t=205388)

GunShad0w 11-29-2010 12:02 PM

Quote:

Originally Posted by jacobomoya (Post 2127087)
Do you get a blank page or does the dashboard just reject your login? Are you sure you're using the forum username/password? Remember the WP users no longer matter once integrated. Have you tried different forum accounts from different usergroups?



You have to manually choose the forum you want each post published just like you choose the category.

Its rejecting my login...

I think I realized the problem, would it be that my Wordpress Username matches my Vbulletin Username, and thats causing some sort of issue?

jacobomoya 11-29-2010 12:17 PM

Hmm, it shouldn't cause a conflict since it no longer takes in account the WP users. Anyway, you should create another account on your forum and map its usergroup to, I don't know, editors, then try to login with that user, that'd at least help us localize the problem.

GunShad0w 11-29-2010 01:45 PM

Quote:

Originally Posted by jacobomoya (Post 2127115)
Hmm, it shouldn't cause a conflict since it no longer takes in account the WP users. Anyway, you should create another account on your forum and map its usergroup to, I don't know, editors, then try to login with that user, that'd at least help us localize the problem.

Ok, so I tried it again. here's what's happening. I login with my admin info, and it directs me to a blank wp-login.php page. Then I tried creating a editor user, and it takes me to the same blank page. Any ideas?

jacobomoya 11-29-2010 03:01 PM

That's a reported 'normal' occurence, keep trying to connect into the wp-admin page and you'll eventually succeed. Clear your browser's cache/cookies, also, try it with/without the "www" in the url (like, if you're using http://gunshadow.com/wp-admin, try http://www.gunshadow.com/wp-admin) if you still can't.

Dr Longhorn 11-29-2010 04:30 PM

Quote:

Originally Posted by jacobomoya (Post 2127087)
You have to manually choose the forum you want each post published just like you choose the category.

I see the option to choose a forum, but I don’t see where you select which wordpress category you want to be posted to that forum, don’t I have to link the one to the other. Basically what I want is all posts that are made in a certain wordpress category to be automatically posted to a specific forum.

Thanks

GunShad0w 11-29-2010 06:51 PM

Quote:

Originally Posted by jacobomoya (Post 2127183)
That's a reported 'normal' occurence, keep trying to connect into the wp-admin page and you'll eventually succeed. Clear your browser's cache/cookies, also, try it with/without the "www" in the url (like, if you're using http://gunshadow.com/wp-admin, try http://www.gunshadow.com/wp-admin) if you still can't.

Ive tried all of that. Everytime it either says, "Username field is empty at the login page", or it give me a blank screen

RPSmedia 11-30-2010 02:04 AM

This works for me on vb 4.08 and wp 3.0.1

jacobomoya 11-30-2010 06:17 AM

Quote:

Originally Posted by Dr Longhorn (Post 2127223)
I see the option to choose a forum, but I don?t see where you select which wordpress category you want to be posted to that forum, don?t I have to link the one to the other. Basically what I want is all posts that are made in a certain wordpress category to be automatically posted to a specific forum.

Thanks

I'm afraid there's no such option. But the forum you choose in VBridge settings is just the default forum all posts will be published if you don't specify one. When you're writing a new post, look below for a new dropdown list with all your forums, you'll have to manually select the forum for every post with that.

Quote:

Originally Posted by GunShad0w (Post 2127277)
Ive tried all of that. Everytime it either says, "Username field is empty at the login page", or it give me a blank screen

Hmm, disable every other WP plugin and try it again from scratch. Might have a conflict going on there.

GunShad0w 11-30-2010 11:43 AM

Quote:

Originally Posted by jacobomoya (Post 2127458)
I'm afraid there's no such option. But the forum you choose in VBridge settings is just the default forum all posts will be published if you don't specify one. When you're writing a new post, look below for a new dropdown list with all your forums, you'll have to manually select the forum for every post with that.



Hmm, disable every other WP plugin and try it again from scratch. Might have a conflict going on there.

Ive been placing the vbulletin in the same database as wordpress, maybe I should try putting vb in a separate db?


EDIT: Ok so I tried a separate DB, and now its letting me login to the Wordpress dashboard with my vBulletin login details, but now when I login to vbulletin, it logs me right back out and I can't access the admin panel on vb...

jacobomoya 11-30-2010 03:36 PM

Quote:

Originally Posted by GunShad0w (Post 2127516)
when I login to vbulletin, it logs me right back out and I can't access the admin panel on vb...

Cookie domain problem. Use the tools.php to restore it, making sure it's pointing to the forum directory and not the root one.

GunShad0w 12-01-2010 11:01 AM

Quote:

Originally Posted by jacobomoya (Post 2127586)
Cookie domain problem. Use the tools.php to restore it, making sure it's pointing to the forum directory and not the root one.

so it turns out it was all cookie problems from the very beginning haha, I fixed it by having the wordpress and vbulletin cookies saved to the same path. Everythings fixed and running, thanks for your help...

now I can finally click install for this mod :D

MumDadBaby 12-01-2010 02:39 PM

Hi folks,

I'm also receiving the "headers already sent" error when making a post. The plugin still manages to post to the correct forum with the correct title/username etc but there's no content, just the link back to the article itself.

Any ideas?

Cheers,
Robert

MumDadBaby 12-01-2010 03:00 PM

1 Attachment(s)
Quote:

Originally Posted by MumDadBaby (Post 2127951)
Hi folks,

I'm also receiving the "headers already sent" error when making a post. The plugin still manages to post to the correct forum with the correct title/username etc but there's no content, just the link back to the article itself.

Any ideas?


Cheers,
Robert

This is what I'm getting (see attachment).

Now going by that (I'm not 100% on PHP errors) I'm assuming there's something wrong with my child theme's functions.php at line 20.

Here's the full function found around that line (line 20 is the echo $output line):
PHP Code:

    remove_filter'get_the_excerpt''twentyten_custom_excerpt_more' );
    function 
mindfulmum_custom_excerpt_more$output ) {
        if ( 
has_excerpt() && ! is_attachment() ) {$output str_replace(array("\r""\r\n""\n"), ''$output);}
        echo 
$output."…";}    
    
add_filter'get_the_excerpt''mindfulmum_custom_excerpt_more' ); 

Any ideas?


Cheers,
Robert

AleXanniX 12-01-2010 03:17 PM

Hello
i tried to install the bridge, but when i write a test post i recive a white page in mysite.com/wp-admin/post.php

where's the problem?

way2xtreme 12-04-2010 07:05 AM

Hello, I am having the same problem as below, how do you hardcode the link in the plugin file?

I see the line in my editor, just not sure what to type.

Also, let's say my forum is at 12345.com and my blog is at 12345.com/wpblog/ , what is the relative path ?

Thanks,
W


Quote:

Originally Posted by amjadz4 (Post 1890774)
Originally Posted by LegendZelda View Post

When I try to make a post I get the following errors

Warning: chdir() [function.chdir]: No such file or directory (errno 2) in /home1/noahglas/public_html/hiddentriforce/wp-content/plugins/vbbridge.php on line 108

Warning: require_once(./includes/class_dm.php) [function.require-once]: failed to open stream: No such file or directory in /home1/noahglas/public_html/hiddentriforce/wp-content/plugins/vbbridge.php on line 113

This is when I Update a post, publish a post, etc.

I got everything else working. I do not want the posts to be published to my forums. I just wanted the user integration so I have the Post Articles to Forum option turned off.

What can I do to fix this?

Noah

Check your paths in the vbridge settings. Or, manually hardcode the link in the plugin file.

Originally Posted by saf-t scissors View Post

Does anyone know why the resetvbbridge file doesn't work?

I screwed something up and got locked out of WP, tried to use this file to turn integration off, uploaded it to the root WP dir (same as the root dir for that host) and ran it, but nothing happens. Looking at the code, I should get a confirmation echo.

Originally Posted by saf-t scissors View Post

I was able to manually edit the db and turn the plug-in off, but that little script still doesn't work.

Uninstall it completely from your DB and re install, step by step. Should work perfectly.


cache 12-05-2010 02:24 AM

I can not past the first installation step, as soon as I turn on this plug in, when accessing wp's post, I would get this:

wp-admin/global.php. You should check your path! Turning Plugin Off

I have seen three people had the exact same problem in this thread, but it seemed there was answer to their questions either.

MumDadBaby 12-05-2010 07:04 PM

Hmmm, the developer hasn't been on here since October, that's a bit worrying.

bailz66 12-05-2010 11:20 PM

Quote:

Whenever I activate the "Auto-Integrate" on I keep getting blank pages for all of Wordpress. I tried mapping "Unregistered / Not Logged In" as every possible role but I get the same results (blank pages).

That said, if I head over to the forum and log in (either as a user or an admin), I get all Wordpress pages with no problem.

Any suggestions?
This was posted last year but no response made

Does anyone have a solution for this?

Thanks
Warren

Thanks in advance.

bailz66 12-09-2010 12:11 AM

I have the solution to the above problem

If you have your forums set so that unregistered users can not view your forum then unregistered users will not be able to view the log. There wont be an error message just a blank page. Hope this helps someone else

MumDadBaby 12-09-2010 10:06 AM

I've just discovered that Complete vBridge is screwing with "Set Featured Image". It hits you with the dreaded "Are you sure you want to do this? Please try again." page.

Shadawg 12-09-2010 08:32 PM

I have installed this into WP 3.0.3 and VB vBulletin 4.1.0 Patch Level 2 and am having a strange problem. Posts are going over but new user registration in WP is not. Also for some reason the side bar content is now blank. We had several side items that disappear when the bridge is active and if i turn it off or deactivate it the content reappears. I would appreciate it if anyone has had this problem or knows where to start looking to let me know.

Thanks

jacobomoya 12-10-2010 11:48 AM

Quote:

Originally Posted by Shadawg (Post 2131572)
Posts are going over but new user registration in WP is not.

The WP user system is completely disabled with this plugin, it uses VBulletin's users and user registration.

Quote:

Originally Posted by Shadawg (Post 2131572)
We had several side items that disappear when the bridge is active and if i turn it off or deactivate it the content reappears.

Sounds like you're not mapping users properly and those side items disappear because your usergroup doesn't have the required permissions to use them.

Shadawg 12-13-2010 01:19 PM

I tried setting all users to administrators on the vb map users page and the sidebar content still gets knocked out. Also i don't see anything that is saying that sidebar items have user permissions. Is there someplace specific to look for that?

If anyone would like to take a look at my development site email me at jcollins@collinssolutions.com and i can give you a temp account.

Shadawg 12-13-2010 01:23 PM

Also i am to the point where i am willing to pay someone to get it working.

Deimos 12-13-2010 03:20 PM

Quote:

Originally Posted by Rohan95 (Post 2022026)
I'm having a bit of a trouble in using vBulletin for comments. I can't seem to find the comments.php file. Where is the file located?

I found the comments file in the wordpress-3.0.3\wordpress\wp-includes\theme-compat

Directory, but, it doesn't match the bits you need to edit (Only the first 2 sections match)

So when a user replies to a post on the WP site, it doesn't add it to the Forum post

Like wise, comments in the threads, don't get posted on WP.

MumDadBaby 12-14-2010 12:21 AM

Has anyone heard anything from the developer?

MumDadBaby 12-14-2010 08:39 AM

I've tried to contact the developer here, and also at his own website. It would appear that this plugin has been abandoned.

Shadawg 12-16-2010 07:21 PM

we managed to figure out one problem is that the addon gets confused on where to pull information from. Its looking for wp tables in the vb database.

Deimos 12-16-2010 07:55 PM

Oops, that can't be good hehe

John Stone 12-17-2010 07:13 PM

I had this pretty much working, but ran into some issues (I won't rehash them, as they've all been mentioned in this thread). After about 2 days, I had to abandon the effort.

It's a shame there is not a more simple WP/vB user sharing project available. There seems to be no way to simply allow my vB users to comment on WP posts without creating a separate WP account.

RyanC 12-18-2010 01:02 PM

There are a number of people willing to pay up for a new developer to take over... I'm certainly one of them.

Shadawg 12-21-2010 02:26 PM

Its definitely a database selection error. I rewrote one of our theme pages to call ourdatabase.wp_ratings and it worked. I am trying to track down what exactly is overriding the WP database selection. I am working on this for a customer but i think i might pick it up if it truly has been dropped by the current author.

John Stone 12-21-2010 02:42 PM

I thought I'd post my solution in the hopes that it will help someone else.

I found this plugin, which allows WP users to authenticate from an external database:

http://wordpress.org/extend/plugins/...uthentication/

I had to modify the source code to deal with vB's salted MD5 hashes, but apart from that it did the trick.

On the plugin config page select "Other" for the Password encryption method, then put this in for the Hash code:

Code:

$password2 = md5(md5($password) . $salt);
Then you'll just need to modify the plugin source code so it can grab the salt from the vB DB. Just search for case "Other" and replace what's there with this code:

Code:

       
case "Other" :           
          $query = "SELECT salt FROM " . get_option('ext_db_table') . " WHERE " . get_option('ext_db_namefield') . " = '$username'";
          $result = db_functions($driver,"query",$resource,$query);
          $row = db_functions($driver,"fetch",$result,"");
          $salt = $row["salt"];         
          eval(get_option('ext_db_other_enc'));
          break;

Hope this helps. :)

earthome 12-27-2010 10:55 PM

Fatal error: Call to undefined function wp_clearcookie() in /home/name/domains/abc.com/public_html/wp-content/plugins/vbbridge.php on line 131

vbb IS 3.84 PL2 wp is 3.03

earthome 12-28-2010 04:42 AM

Quote:

Originally Posted by earthome (Post 2139860)
Fatal error: Call to undefined function wp_clearcookie() in /home/name/domains/abc.com/public_html/wp-content/plugins/vbbridge.php on line 131

vbb IS 3.84 PL2 wp is 3.03

In vbbridge.php, find wp_clearcookie()

change to

wp_set_auth_cookie( $user_id, $remember, $secure);

earthome 12-28-2010 05:12 AM

1 Attachment(s)
https://vborg.vbsupport.ru/attachmen...1&d=1293520193


https://vborg.vbsupport.ru/attachmen...1&d=1293520193

author

why>??>??????

JamieLee2k 12-28-2010 01:22 PM

I was getting errors during install but thats all sorted, I am confused about something simple:

Whats the difference between VB User ID, VB Username & VB Forum ID during setup? and do I need to fill them all in?

JamieLee2k 12-28-2010 07:34 PM

So I am having this new problem when I install it online.

Soon as I turn on integration it kicks me out and I get a blank page, if I do the same thing using localhost it's fine.

The only way I can get it working is to go into WP_Options and delete all the vbb files, any idea's

Edgespeeder06 12-31-2010 10:51 PM

so in order for this to definitely work the blog and forum have to be on the same domain?

I'm trying to get my www.NJStangers.org forum linked with my Wordpress domain www.NJStangers.net to auto post but just from the sections that are public.

Does it being on different domains make it too complicated or will this version work with it?

amjadz4 01-08-2011 08:15 PM

Quote:

Originally Posted by Edgespeeder06 (Post 2142068)
so in order for this to definitely work the blog and forum have to be on the same domain?

I'm trying to get my www.NJStangers.org forum linked with my Wordpress domain www.NJStangers.net to auto post but just from the sections that are public.

Does it being on different domains make it too complicated or will this version work with it?

Should be on the same domain! :)


All times are GMT. The time now is 11:12 AM.

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.02129 seconds
  • Memory Usage 1,853KB
  • 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
  • (1)bbcode_php_printable
  • (17)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)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