Sometimes you run into a user that isn't helpful, but I'd give vb.com another chance because they really do have an outstanding group of support guys.
If you have a static IP, you can set debug to be on only for you:
PHP Code:
if ($_SERVER["REMOTE_ADDR"] == "xxx.xxx.xxx.xxx") {
// enable debug mode for only my IP address
$config['Misc']['debug'] = true;
}
Replace xxx.xxx.xxx.xxx with your IP. You cannot, however, set it to only show for userid 1, or whatever, because your userid is not known at the time the config.php file comes into play in the page.