Quote:
Originally Posted by PHILIPS-08
where is the debug mode loacted at .. I search at vboptions but i coudn't find it
The reason is when ever i upload pic to profile album It's not working .. It not showing the image .....
|
In config.php, you would add:
PHP Code:
$config['Misc']['debug'] = true;
That will show debug mode to everyone. If you know your IP, you can probably do this to just show it to yourself:
PHP Code:
if ($_SERVER["REMOTE_ADDR"] == "xx.xx.xx.xx") {
$config['Misc']['debug'] = true;
}