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)

deepmartini 02-19-2009 04:24 PM

It would be great if this mod could go the other way too. Sending Wordpress users into vbulletin. Most people use Wordpress as a frontend and the vbulletin forums as just a part of the website. I don't know of any sites that use vbulletin as a front end and wordpress as just a page or part of their site.

Is it possible to make this mod, so you can select sending wordpress users into vbulletin or vbulletin into wordpress?

Wordpress users into vbulletin is what most people are looking for and the market for this mod is HUGE. I know many people who would even be willing to pay a decent amount for a mod like this, instead of having custom coding done.

Please consider making this mod or adding the functionality into this one. Many thanks!

Regards,
Robert

mercuryyy 02-19-2009 05:50 PM

First Off all Great Plugin, I'd defently Donate it i get it working.

I got 2 I issue.

The first is: I'm running a video Blog so all my Content posts look something like this:

<embed src="http://www.*****.com/stream/player.swf" width="610" height="414" allowfullscreen="true" flashvars="config=http://www.******.com/flv/anime.php?id=v175135976ARE3ems"></embed>

When saving a post on wordpress it works and it's saving the post in the forums but the problem is it's not showing any HTML text at all, (Not only does my vbullten cant read HTML in post but it dosnt even show the html code from the wordpress post it comes blank)

When i use plain text is seems to be OK.

The Second issue is that i have 15,000+ Posts and i'd like them all to be published in the forum is there a sql command i can execute to do so without taking to much load out of the server.

I'v been looking for answers for the past 5 hours, but only found parshell possibilites and at older version.

I run Wordpress 2.7 and VB 3.7.3

Thanks Again

And Have a great Day.

Mitchell Jones 02-19-2009 09:46 PM

Quote:

Originally Posted by deepmartini (Post 1749159)
It would be great if this mod could go the other way too. Sending Wordpress users into vbulletin. Most people use Wordpress as a frontend and the vbulletin forums as just a part of the website. I don't know of any sites that use vbulletin as a front end and wordpress as just a page or part of their site.

Is it possible to make this mod, so you can select sending wordpress users into vbulletin or vbulletin into wordpress?

Wordpress users into vbulletin is what most people are looking for and the market for this mod is HUGE. I know many people who would even be willing to pay a decent amount for a mod like this, instead of having custom coding done.

Please consider making this mod or adding the functionality into this one. Many thanks!

Regards,
Robert

I'm in the same boat as this guy, and as much as I like this plugin and appreciate the work put into it that I wouldn't have the faintest idea where to even start with, it's a bit of a negative for people who use Wordpress for their entire front end. I'm not suggesting compromising the current coding for the sake of making it work, but if anyone knows of any proper way to reverse the process so that theoretically you can close vB registration and have the front-end registration used to create an account on vB too (and Linkin Park's website does this so I know it's do-able - although that isn't Wordpress, admittedly) then I may just have to give sexual favours for the rest of my existence to the genius who can do it.

sung 02-19-2009 10:52 PM

Just installed this and for the most part it works. Test post properly posted to the forums and users are already logged in for comments in Wordpress.

However, there are some wonky things that other people have documented in this thread.

1) The following whenever a change is made:

Quote:

Originally Posted by Mr. Mooney (Post 1748275)
Hi,

I just installed the mod and am having some issues. First of all, when I change any settings I get this error:

Warning: Cannot modify header information - headers already sent by (output started at /home/site/public_html/wp-content/plugins/vbbridge.php:132) in /home/site/public_html/wp-includes/functions.php on line 698

Warning: Cannot modify header information - headers already sent by (output started at /home/site/public_html/wp-content/plugins/vbbridge.php:132) in /home/site/public_html/wp-includes/functions.php on line 699

This shows up but the changes end up getting made.

2) Visual Editor is gone
3) Permalinks using any kind of custom structure do not work.

Look forward to seeing some fixes. Great work otherwise.

Mr. Mooney 02-20-2009 01:48 AM

Everything is working fine now except for one thing. When I make a post with multiple paragraphs, everything is posted as one paragraph. Do you know what would cause this.

Example: I post

Paragraph 1.

Paragraph 2.

It posts:

Paragraph 1. Paragraph 2.

Reynaldovb 02-20-2009 04:14 AM

Hey Jafo232:

Thanks for this nice plugin. It seems to be working except for one thing, when a post is created through WP and posted to a VB forum, the text is incorrectly posted as ISO-8859-1 while the title is posted as UTF-8.
Everything in my forum is set to UTF-8 (DB collation, tables collation, columns, the languages and the HTML Charset Set).
Only workaround i found was to change line 162 of vbbridge.php from:
PHP Code:

$_POST['content'] = fetch_censored_text(utf8_decode($_POST['content'])); 

to:
PHP Code:

$_POST['content'] = fetch_censored_text($_POST['content']); 

Any ideas why this is happening? It doesn't make sense to me that it is happening for the post content and not for the title.

Additionally, is there a way to be able to use the %author% variable in the permalink? I would like to have my permalinks set to something like: %author%/%postname%/
so users feel like they have their own little corner of the blog.

laztrix 02-20-2009 10:20 AM

Quote:

Originally Posted by Reynaldovb (Post 1749609)
Hey Jafo232:

Thanks for this nice plugin. It seems to be working except for one thing, when a post is created through WP and posted to a VB forum, the text is incorrectly posted as ISO-8859-1 while the title is posted as UTF-8.
Everything in my forum is set to UTF-8 (DB collation, tables collation, columns, the languages and the HTML Charset Set).
Only workaround i found was to change line 162 of vbbridge.php from:
PHP Code:

$_POST['content'] = fetch_censored_text(utf8_decode($_POST['content'])); 

to:
PHP Code:

$_POST['content'] = fetch_censored_text($_POST['content']); 

Any ideas why this is happening? It doesn't make sense to me that it is happening for the post content and not for the title.

Additionally, is there a way to be able to use the %author% variable in the permalink? I would like to have my permalinks set to something like: %author%/%postname%/
so users feel like they have their own little corner of the blog.

I have the same issue

I need ISO-8859-9 encoding normally UTF-8 would cover that.
When I activate the plugin the content charachter set corrupts. I did the changes you did but this time the permalinks charachter corrupts.

Visual editor is gone too!

dieslcruisrhead 02-20-2009 01:53 PM

Excellent work and agreed very good plugin!

I'm having the same issues as everyone else. THe WSYG editor, the "cant publish to header" errors, and the error listed above. Otherwise it looks excellent and nice work!

I won't mind reinstalling it if a new version comes out, it is *so* easy to implement. Also, mine is following the usergroups perfectly - that aspect is working perfectly.

Much appreciated!

Pirat3 02-20-2009 01:54 PM

I am a first time user on this mod and get this error:"
Code:

Warning: Cannot modify header information - headers already sent by (output started at [path]/wp-content/plugins/vbbridge.php:141) in [path]/wp-includes/functions.php on line 698

Warning: Cannot modify header information - headers already sent by (output started at [path]/wp-content/plugins/vbbridge.php:141) in [path]/wp-includes/functions.php on line 699

However I have a question, my forum and my WP are in /public_html/ when it asks for my forum path and URL do I just use my site URL?

Also does this have any affect with the newest WP version which was released a few days ago?

Pirat3 02-21-2009 04:28 AM

Quote:

Originally Posted by Mr. Mooney (Post 1749517)
Everything is working fine now except for one thing. When I make a post with multiple paragraphs, everything is posted as one paragraph. Do you know what would cause this.

Example: I post

Paragraph 1.

Paragraph 2.

It posts:

Paragraph 1. Paragraph 2.


Same problem


All times are GMT. The time now is 12:51 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.01982 seconds
  • Memory Usage 1,768KB
  • 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
  • (1)bbcode_code_printable
  • (4)bbcode_php_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (4)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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