vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Error turning me mad... help please (https://vborg.vbsupport.ru/showthread.php?t=78825)

Deaths 03-26-2005 02:16 PM

Error turning me mad... help please
 
I've been working on this for a long time, and now this error pops up out of nowhere.

It gives me this error:
Code:

Fatal error: Call to a member function on a non-object in /xxx/yyy/public_html/forum/profile.php on line 2606
This is what I've added on line 2606:

PHP Code:

$installs $DB_SITE->query("
            SELECT hack.threadid, hack.hackid, hack.userid, hack.dateline, hack.version_vb, hack.titre AS title, hack.nb_install, hack.version_hack, hack.description
            FROM " 
TABLE_PREFIX "hacks AS hack
            LEFT JOIN "
TABLE_PREFIX ."hacks_install AS i ON (hack.hackid=i.hackid AND hack.threadid=i.threadid AND hack.userid=i.userid)
            WHERE hack.userid = 
$userid"); 

I know it'll probably be something like a typo, because I've been working for this 12 hours strait, and havent had any sleep for about 24 hours either :/


Help is appreciated, as always.

Trigunflame 03-26-2005 02:20 PM

Quote:

Originally Posted by Deaths
I've been working on this for a long time, and now this error pops up out of nowhere.

It gives me this error:
Code:

Fatal error: Call to a member function on a non-object in /xxx/yyy/public_html/forum/profile.php on line 2606
This is what I've added on line 2606:

PHP Code:

$installs $DB_site->query("
            SELECT hack.threadid, hack.hackid, hack.userid, hack.dateline, hack.version_vb, hack.titre AS title, hack.nb_install, hack.version_hack, hack.description
            FROM " 
TABLE_PREFIX "hacks AS hack
            LEFT JOIN "
TABLE_PREFIX ."hacks_install AS i ON (hack.hackid=i.hackid AND hack.threadid=i.threadid AND hack.userid=i.userid)
            WHERE hack.userid = 
$userid"); 

I know it'll probably be something like a typo, because I've been working for this 12 hours strait, and havent had any sleep for about 24 hours either :/


Help is appreciated, as always.

That error is only generated when you are trying to use a function (ie. Method) from a Class that does not exist.

In other words,

$DB_site

Which normally points to Vbulletins DB Interface Class, has
1. Not be constructed
2. Variable can not be found in current operating space (ie. you are using it inside a function and it has not been passed by function ($value) or not been globalized global $value;

If you are using that query inside a function, make sure you have

global $DB_site;

Deaths 03-26-2005 02:23 PM

Tried that already, with no succes.

Trigunflame 03-26-2005 02:25 PM

Quote:

Originally Posted by Deaths
Tried that already, with no succes.

Then that would mean, the $DB_SITE object has not been constructed.

Dean C 03-26-2005 02:27 PM

It's case sensitive. Use $DB_site :)

Deaths 03-26-2005 02:29 PM

Found the error, it's DB_site, not DB_SITE.

Thought it would be something like that.

I need sleep.


All times are GMT. The time now is 03:41 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.01619 seconds
  • Memory Usage 1,728KB
  • 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
  • (2)bbcode_php_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (6)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