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)

MissKalunji 11-06-2010 01:37 AM

works perfectly!! thank you !!

MissKalunji 11-06-2010 01:40 AM

Another question

When i post a new thread it does show in vb.

What about replies?

When i reply it doesn't show in vb...

Edit


I figured it out :)

drsmash 11-07-2010 10:47 AM

Quote:

Originally Posted by drsmash (Post 2118350)
i make it /vb
my forum path is /vb

should i do it (/home/habebe/public_html/vb/)
?????

i change the path several times and still have the same problem
Quote:

Warning: require_once(DIR/includes/functions_newpost.php) [function.require-once]: failed to open stream: No such file or directory in /home/habebe/public_html/vb/includes/class_dm_threadpost.php on line 18

Fatal error: require_once() [function.require]: Failed opening required 'DIR/includes/functions_newpost.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/habebe/public_html/vb/includes/class_dm_threadpost.php on line 18

MissKalunji 11-07-2010 01:27 PM

what would be good is if "clicking add comment" would open an ajax box with the comment, when they click post, it will say thank you and you can close the box.

Would be much better then having to go on another page and such.

Jeel89 11-09-2010 08:26 AM

I have a question about the data requested

(VB User Id), I suppose this is my customer number
(VB Forum ID), number of the license I own
(VB User Name), what of this, is this my username on vbulletin.com?

hagalil 11-09-2010 08:51 AM

No download possible.

hagalil 11-09-2010 08:53 AM

Vbull may be a good thing, but to pay and then be unable to use anything as you need to identify yourself nearly everytime you click somewere, makes me angry.
You get much better and friendlier service, nearly everywhere - for free!!!

RyanC 11-09-2010 12:06 PM

I've been using this plugin for years. It's been great... Just recently, the plugin started acting strange for seemingly no reason. Here are the details:

WP 3.0.1
VB 3.8.1

When you post from the wordpress admin, you get a blank white page. The post shows up on the wordpress blog as well as the assigned forum, however the comment count does not display anymore. So, there is no link from the wordpress post to the forum thread that represents it.

Any idea how I can fix this? This worked fine just the other day and just randomly stopped working. Would love some help.

credenscel 11-10-2010 04:44 PM

can this mod work for vb 3.6?

MissKalunji 11-13-2010 08:36 PM

Quote:

Originally Posted by hayamakun (Post 2085406)
This added code allows the Wordpress front page (and probably some others that calculate comment count) to show the number of replies in the vb thread.

Note: I am using WP version 3.0.1 and VB version 3.8.6

In vbbridge.php, add to the end:

Code:

add_filter('get_comments_number', 'comments_count', 10, 2);

### Return Comment count
function comments_count($count, $postID = false) {
        global $vbulletin, $vwd;

        $wpdb =& $GLOBALS['wpdb'];
        $sql = "select vb_threadid FROM " . $GLOBALS['table_prefix'] . "posts where ID = '$postID'";
        $results = $wpdb->get_row($sql);

        $sql = "select replycount FROM " .  TABLE_PREFIX . "thread where threadid = '$results->vb_threadid'";
        $results2 = $wpdb->get_row($sql);

        return $results2->replycount;

}

That should work pretty well. Did some testing on it, seems to work fine.

This would be possible ONLY if both are under the same database?


All times are GMT. The time now is 08:14 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.02229 seconds
  • Memory Usage 1,742KB
  • 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
  • (3)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