The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#25
|
||||
|
||||
Quote:
Code:
Warning: Undefined property: queries in /obb/lib/database/mysql.php on line 67 Warning: Undefined variable: HTTP_X_FORWARDED_FOR in /obb/base.php on line 164 Warning: Use of undefined constant lgthsubj - assumed 'lgthsubj' in /obb/base.php on line 341 Warning: Use of undefined constant lgthdesc - assumed 'lgthdesc' in /obb/base.php on line 342 Warning: Cannot add header information - headers already sent by (output started at /obb/lib/database/mysql.php:67) in /obb/base.php on line 395 Warning: Undefined offset: 99 in /obb/base.php on line 419 Warning: Undefined variable: quit_reason in /obb/base.php on line 429 Warning: Undefined variable: quit_reason in /obb/base.php on line 435 Warning: Undefined offset: 1 in /obb/lib/functions.php on line 170 Warning: Undefined variable: query_forums in /obb/lib/functions.php on line 234 Warning: Undefined variable: adminquery in /obb/cp.php on line 228 Warning: Undefined variable: settings in /obb/cp.php(247) : eval()'d code on line 44 Warning: Undefined variable: forummanager in /obb/cp.php(247) : eval()'d code on line 45 Warning: Undefined variable: users in /obb/cp.php(247) : eval()'d code on line 46 Warning: Undefined variable: usergroup in /obb/cp.php(247) : eval()'d code on line 47 Warning: Undefined variable: email in /obb/cp.php(247) : eval()'d code on line 47 Warning: Undefined variable: avatars in /obb/cp.php(247) : eval()'d code on line 48 Warning: Undefined variable: images in /obb/cp.php(247) : eval()'d code on line 49 Warning: Undefined variable: design in /obb/cp.php(247) : eval()'d code on line 50 Warning: Undefined variable: ipbanning in /obb/cp.php(247) : eval()'d code on line 51 Apparently you require register_globals to be turned On, which is a pointless requirement since you can emulate register_globals On (being an extraordinary programmer I'm sure you've heard of extract()). However, users that have it turned Off will never be able to see that requirement since they can't get to step 2, pal. Quote:
Ohh, what's this? PHP Code:
Correct me if I'm wrong, but didn't you say 24 queries on showthread was quite a lot? Code:
SELECT lots of fields FROM obb_configuration SELECT member, record FROM obb_active WHERE record = '47373d3133f1c660f' UPDATE obb_active SET lots of stuff SELECT lots of fields FROM obb_profiles WHERE username = 'Chen' SELECT send, subject FROM obb_pmsg WHERE owner = 'Chen' AND box = 'inbox' AND isread = '0' ORDER BY time SELECT forumid FROM obb_moderators WHERE modid = '1' SELECT org, rep FROM obb_vars WHERE groupid = 0 SELECT lgthsubj, lgthdesc FROM obb_configuration SELECT template, id FROM obb_templates WHERE groupid = 0 AND (id IN (lots of numbers)) UPDATE obb_profiles SET ip = '127.0.0.1', lastactive = '1026635458' WHERE username = 'Chen' SELECT isadmin FROM obb_usergroup WHERE id = 3 SELECT forumid, pollid, description, locked FROM obb_topics WHERE id = 1 UPDATE obb_active SET inforum = '2' WHERE member = 'Chen' SELECT smiley, image FROM obb_smilies UPDATE obb_favorites SET visit = '1' WHERE threadid = 1 AND username = 'Chen' SELECT ismoderator FROM obb_forum_permissions WHERE forumid = '2' and uid = '3' SELECT ismoderator FROM obb_usergroup WHERE id = '3' UPDATE obb_favorites set visit = '1' WHERE threadid = '1' AND username = 'Chen' SELECT title, replies FROM obb_topics WHERE id = '1' UPDATE obb_topics SET views = (views + 1) WHERE id = 1 UPDATE obb_configuration SET totalviews = (totalviews + 1) UPDATE obb_active SET location = 'Reading Topic testing...' WHERE record = '47373d3133f1c660f' SELECT output FROM obb_navigations WHERE id = 'forum:2' SELECT lots of fields FROM obb_posts, obb_profiles WHERE obb_posts.poster = obb_profiles.username AND obb_posts.threadid = '1' ORDER BY obb_posts.id LIMIT 0,10 SELECT member FROM obb_active WHERE member = 'Chen' AND '1026635468' - lastaction < 600 SELECT isadmin, ismoderator FROM obb_usergroup WHERE id = '3' SELECT title, icon FROM obb_usergroup WHERE id = '3' SELECT custom AS usertitle FROM obb_profiles WHERE username = 'Chen' LIMIT 1 SELECT image FROM obb_usergroup WHERE id = '3' LIMIT 1 SELECT cache FROM obb_cache WHERE name = 'forums:gid3' LIMIT 1 SELECT total, options, answers FROM obb_polls WHERE id = '1' SELECT org, rep FROM obb_vars WHERE groupid = '0' SELECT email FROM obb_profiles WHERE id = '1' Not to mention I see some double queries in there, specifically: Code:
SELECT org, rep FROM obb_vars WHERE groupid = 0 SELECT org, rep FROM obb_vars WHERE groupid = '0' /* or */ UPDATE obb_favorites SET visit = '1' WHERE threadid = 1 AND username = 'Chen' UPDATE obb_favorites set visit = '1' WHERE threadid = '1' AND username = 'Chen' |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|