vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Integration with vBulletin - Dynamic Joomla!VB wrapper (https://vborg.vbsupport.ru/showthread.php?t=172308)

goyo 03-19-2008 09:55 AM

Error in installation description ?

Original description:

* Insert $myjoomladhead at the end of the header template
* Insert $myjoomladheader at the end of headinclude template

Instead (my take):

* Insert $myjoomladheader at the end of the header template
* Insert $myjoomladhead at the end of headinclude template

shadowraith 03-19-2008 05:54 PM

Quote:

Originally Posted by goyo (Post 1468574)
Error in installation description ?

Original description:

* Insert $myjoomladhead at the end of the header template
* Insert $myjoomladheader at the end of headinclude template

Instead (my take):

* Insert $myjoomladheader at the end of the header template
* Insert $myjoomladhead at the end of headinclude template

Good catch! Thanks for the head's up. Instructions corrected.

vau7 03-22-2008 01:16 AM

I really cant get it to work, since i dont understand php. Is there anyone who will do it for a few bucks?

jeff21up 03-22-2008 06:16 AM

Has anyone noticed all the call to undefined errors when viewing in threaded mode?

SOFTMASTER 03-23-2008 06:36 AM

Ohhh no !!!

I've been working hard during 2 days to integrate manually my joomla template ! Haven't seen an addon could exist :'(

Gonna try it now !

Thank you very much shadowraith !!

shadowraith 03-25-2008 05:05 AM

Quote:

Originally Posted by jeff21up (Post 1471374)
Has anyone noticed all the call to undefined errors when viewing in threaded mode?

Hadn't notice that and certainly did not see it before! Will need to track that bit down to see what is occurring. I obviously b0rked something though... :/

Tigratrus 03-31-2008 08:35 PM

Ok... I took a whack at making this work in J! 1.5.1, but I think it may be beyond my shaky grasp of the differences between J! 1.0x and J! 1.5x and php in general :o. Basically we never messed with 1.0x after we decided that the vB bridges were too unstable, so I don't know that much about 1.0x at all.

The function call mosMainbody doesn't exist in 1.5, I took a stab at it but I'm not at all sure I've got it right.

I also had to modify the plugin a bit, so that it looks more like this:
Code:

define( '_JEXEC, 1 );
  $myjoomlapath = $vbulletin->options['dyn_joomla_path'];
 require_once( $myjoomlapath.'/configuration.php' );
 require_once( $myjoomlapath.'/includes/joomla.php' );
 require_once( JPATH_SITE .'/includes/frontend.php' );
 require_once( JPATH_SITE .'/includes/sef.php' );
 $mainframe = new mosMainFrame( $database, '', '.' );
 $mainframe->initSession();
 ob_start();
 include_once(JPATH_SITE . '/templates/' . $mainframe->getTemplate(). '/vbulletin/head.php');
 $myjoomladhead = ob_get_contents();
 ob_clean();
 include_once(JPATH_SITE . '/templates/' . $mainframe->getTemplate(). '/vbulletin/header.php');
 $myjoomladheader = ob_get_contents();
 ob_clean();
 include_once(JPATH_SITE . '/templates/' . $mainframe->getTemplate(). '/vbulletin/footer.php');
 $myjoomladfooter = ob_get_contents();
 ob_end_clean();

Not sure if that's right or not?

If you *do* play with it in 1.5, let us know? Given that we're working with media mogul too, it'd be a real easy implementation for us if you provide updated templates based on RT's MM.:D

I'll keep on banging away on it to see if I can figure out what's wrong... And post back if I make any headway.



James and Susan

OneEyeSleepy 04-02-2008 04:17 PM

Hi, I am very interested in your wrapper. Its the best I have ever seen at the moment. However, you also posted another file download in the rockettheme.com forum (http://www.rockettheme.com/option,co...697.msg156280/), if that is you, under post 11.

Is the file the same as the first post of this topic?

shadowraith 04-05-2008 06:56 PM

Quote:

Originally Posted by OneEyeSleepy (Post 1481066)
Hi, I am very interested in your wrapper. Its the best I have ever seen at the moment. However, you also posted another file download in the rockettheme.com forum (http://www.rockettheme.com/option,co...697.msg156280/), if that is you, under post 11.

Is the file the same as the first post of this topic?

Yes, I just added the instructions that I posted here to that file.

shadowraith 04-05-2008 06:57 PM

Quote:

Originally Posted by Tigratrus (Post 1479415)
Ok... I took a whack at making this work in J! 1.5.1, but I think it may be beyond my shaky grasp of the differences between J! 1.0x and J! 1.5x and php in general :o. Basically we never messed with 1.0x after we decided that the vB bridges were too unstable, so I don't know that much about 1.0x at all.

The function call mosMainbody doesn't exist in 1.5, I took a stab at it but I'm not at all sure I've got it right.

I also had to modify the plugin a bit, so that it looks more like this:
Code:

define( '_JEXEC, 1 );
  $myjoomlapath = $vbulletin->options['dyn_joomla_path'];
 require_once( $myjoomlapath.'/configuration.php' );
 require_once( $myjoomlapath.'/includes/joomla.php' );
 require_once( JPATH_SITE .'/includes/frontend.php' );
 require_once( JPATH_SITE .'/includes/sef.php' );
 $mainframe = new mosMainFrame( $database, '', '.' );
 $mainframe->initSession();
 ob_start();
 include_once(JPATH_SITE . '/templates/' . $mainframe->getTemplate(). '/vbulletin/head.php');
 $myjoomladhead = ob_get_contents();
 ob_clean();
 include_once(JPATH_SITE . '/templates/' . $mainframe->getTemplate(). '/vbulletin/header.php');
 $myjoomladheader = ob_get_contents();
 ob_clean();
 include_once(JPATH_SITE . '/templates/' . $mainframe->getTemplate(). '/vbulletin/footer.php');
 $myjoomladfooter = ob_get_contents();
 ob_end_clean();

Not sure if that's right or not?

If you *do* play with it in 1.5, let us know? Given that we're working with media mogul too, it'd be a real easy implementation for us if you provide updated templates based on RT's MM.:D

I'll keep on banging away on it to see if I can figure out what's wrong... And post back if I make any headway.



James and Susan

Hi, haven't had time to play with 1.5 yet, but this plugin also works with joomla 1.0.15 & vbulletin 3.6.9 (with no changes to the underlying plugin)


All times are GMT. The time now is 06:32 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.01154 seconds
  • Memory Usage 1,753KB
  • 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
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (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