Back to General Articles

3 methods for enabling debug mode for site admin ONLY
by Oracle simsim 30 Jun 2011

We will explain here how to turn on debug mode for LIVE vbulletin website for site admin only.

We all know that we can enable debug mode by add this line to /include/config.php

PHP Code:
$config['Misc']['debug'] = true


but .. this will enable debug mode for everyone else .. not just the admin. even if you close your forum, the debug mode still running and showing critical information about your site). This is good only on your private forum on your test server.

why this happen ?? why vbulletin team does not enable debug mode for the admins only ??? I am sure that's because the debug functions must run (before) the forum know that (this visitor is admin!) i.e. before pulling user information from db and checking his user group id/permissions.

so.. what we can do to enable the debug mode for webmaster only ?

Method (1)-By using (Secret Query String):

below the last line in your https://www.vbulletin.com/docs/html/config.php add this

PHP Code:
$debug_mode_secret_query="3003"//CHANGE this to your own secret value (letters and numbers only)
// Do Not Edit Below
if ($_GET["debug"]==$debug_mode_secret_query$config['Misc']['debug'] = true

remember to change your secret debug mode number (i.e. $debug_mode_secret_query variable value)
save & upload config.php

now .. if you want to see your live site in debug mode .. add the query string to any page url in your forum.

Examples:

Code:
https://www.yourforum.com/forum/forum.php?debug=3003
https://www.yourforum.com/forum/index.php?t=189992&debug=3003


Advantages:
1- You can turn on the debug mode of your forum from any place, IP or browser.
2- Turn debug mode on only if you want (not every time you open your forum pages)
Disadvantages:
1- You need to add the query string part manually each time you visit new page.
2- Spiders or Alexa may catch that URL with that query string if you have installed a spyware toolbar like alexa, page rank, etc (really ?)

Method (2)-By Adding secret Custom HTTP Request header to your browser:


Firstly, add a custom header to your browser. The best and easiest way to do that is to install (https://addons.mozilla.org/en-US/firefox/addon/modify-headers/ ) for your firefox, then add your custom request header via its option

Header name: debug
header value: 3003 (change this value to your own secret value)
Always ON the add-on from General tab

check the request header if it is sent correctly along with your other browser request headers.

now .. put this code in your https://www.vbulletin.com/docs/html/config.php below the last line
PHP Code:
$debug_mode_secret_header="3003"// Change this value to be the same as your custom header value i.e. 3003 in our example. 
// Do Not Edit Below
if ($_SERVER["HTTP_DEBUG"]==$debug_mode_secret_header$config['Misc']['debug'] = true

Advantages:
1- Turn Debug mode on for that browser for your forum without typing anything manually.
2- Don't care about your IP or ISP.
Disadvantages:
1- Unless you disable your custom header (via the add-on options) you will see your forum in Debug mode every time in that browser.
2- Your custom header will be sent with every request to any page in internet for that browser (emm so what ? )

Method (3)-By Your unchangeable & unique IP:

If your http://www.whatismyip.com/ is unchangeable and unique, You can make use of it to enable the debug mode for yourself Only

record Your Unique IP then add this code below the last line in your https://www.vbulletin.com/docs/html/config.php

PHP Code:
$my_unique_ip="109.224.28.1"// Change this IP to your Unique IP. 
// Do Not Edit Below
if ($_SERVER["REMOTE_ADDR"]==$my_unique_ip$config['Misc']['debug'] = true


Advantages:
1- Turn Debug mode on any browser you have installed without typing anything manually.
Disadvantages:
1- You will see your forum in Debug mode every time you visit your forum from that internet line.
2- If your ISP share your public IP with other clients, those clients will also see your forum in debug mode as well as you.
3- If your ISP change your public IP or you visit the forum outside your home, no more debug mode even with the same laptop (unless you change the code again with the new IP).

original thread
http://www.kut-friends.com/Thread-vbulletin-enable-debug-mode-for-site-admin-ONLY

Sorry about the weak english


--------------- Added 01 Jul 2011 at 00:08 ---------------

Thanks for information dear ..

Similar Mods

Administrative and Maintenance Tools Enable/Disable Debug Mode vBulletin 3.7 Add-ons
Administrative and Maintenance Tools Enable VB Debug Mode without hacking config.php vBulletin 3.7 Add-ons

vblts.ru supports vBulletin®, 2022-2024