vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   BBCode parser (https://vborg.vbsupport.ru/showthread.php?t=197024)

Disi 11-23-2008 12:26 PM

BBCode parser
 
Hi everyone,

hopefully im in the right forum, if note please move it.

I run into several problems where i don't find any solutions for.

I want to create a class where i for example parse news on a external page.
I Query the database directly for explicit forums and there threads and posts.
But i gain that error:

Code:

Fatal error:  Call to a member function query_read_slave() on a non-object in PFAD/ZUM/FORUM/includes/functions.php on line 3112
the constructor of my class looks like this (D_PATH_FORUM is the whole path to my forum):

Code:

$curdir = getcwd();
chdir(PATH_FORUM);
require_once('./global.php');
chdir($curdir);
           
require_once(D_PATH_FORUM.'includes/class_bbcode.php');
$this->m_oBBCodeParser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());

then i got a BBCode parse function in the class which looks like this

Code:

protected function parseBBCode($sContent)
        {
            $sContent = $this->m_oBBCodeParser->parse($sContent, 'nonforum', true);
            return $sContent;
        }

Well the end is i always get the error above

Hope you can help me somehow.

regards,

Disi

Disi 11-24-2008 07:14 PM

Well the solution is quite easy if you now what you need to do :)

First of all the Require/Include schould be in your in index.php or something like that but not in your class, if you put them in your class the $vbulletin variable get out of scop, don't know why but it seems a matter of fact.

Now you just need to put a global $vbulletin into your function and the vbulletin functions are working.

Thanks a lot Christian vom vbulletin-germany.org for the help!

Cheers

Disi


All times are GMT. The time now is 10:24 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.01211 seconds
  • Memory Usage 1,706KB
  • 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
  • (3)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (2)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
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete