vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Enabling plugin causes whitescreen (https://vborg.vbsupport.ru/showthread.php?t=208234)

Will.Spencer 03-13-2009 07:59 PM

Enabling plugin causes whitescreen
 
I have a small PHP program, http://www.netbuilders.org/showlinks.php, which acts as a link rotator.

I want to include it in my vBulletin templates, so I created a plugin called showlinks.

I used global_start as the hook location and used this as my plugin PHP code:
Code:

ob_start();
include('/usr/local/www/data/netbuilders.org/showlinks.php');
$nblinks = ob_get_contents();
ob_end_clean();

When I enable the plugin, the forum stops working. It will only display a blank white screen until I disable the plugin again. :(

I have read these two documents and they are not providing me with any usable clues:Has anyone seen vBulletin do this before?

When the whitescreen behavior is occurring, this error message fills my Apache logs: "PHP Fatal error: Call to a member function query_read_slave() on a non-object in /usr/local/www/data/netbuilders.org/includes/functions.php on line 4819."

The code around line 4819 is:
Code:

$ismod_all = $vbulletin->db->query_read_slave("
                                SELECT forumid, moderatorid, permissions, permissions2
                                FROM " . TABLE_PREFIX . "moderator
                                WHERE userid = $userid" . (!$issupermod ? ' AND forumid != -1' : '')
                        );

Any ideas?

TigerC10 03-13-2009 08:23 PM

The error you're talking about means that you haven't created the $db object in $vbulletin. Because you have the member function defined, and you don't have the $db object, it means that global.php is terminating early (probably through an error).

The global_start hook that you chose is why it's terminating early.


I believe that because you're fussing with ob_ stuff it's not having the desired result. Change your plugin code to be this:

PHP Code:

include('/usr/local/www/data/netbuilders.org/showlinks.php'); 

Then change your showlinks.php file to define the $nblinks variable as whatever you want it to appear as in your templates.

Will.Spencer 03-13-2009 08:26 PM

TigerC10:

Isn't that the opposite of what vBulletin.com recommends in the documentation and the forum?Ah... wait... your post contains the answer! showlinks.php uses $db as a variable and that's causing a conflict.

Changed, tested, confirmed, fixed.

Thanks man! :)

TigerC10 03-13-2009 08:49 PM

Eh, it's a matter of style preference. I prefer to avoid the ob_ stuff because the PHP api changes how that stuff is handled from time to time.

Glad I could help you trace your error, though. :)


All times are GMT. The time now is 01:40 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.01109 seconds
  • Memory Usage 1,724KB
  • 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
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)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