PDA

View Full Version : Begin Template: Standard_error


Rawlings
09-01-2011, 11:21 AM
I keep getting this error message when I am logged in on an administrator account:
<!-- BEGIN TEMPLATE: STANDARD_ERROR -->

<!-- END TEMPLATE: STANDARD_ERROR -->

Is there any way to get more debug details, what is going wrong, where in the code it is happening?

(I'm running the latest vbulletin)

kh99
09-01-2011, 12:28 PM
You could try this: in the file includes/class_core.php, in function vB_Template::create() around line 4127, put this at the beginning of the function

if ($template_name == 'STANDARD_ERROR')
{
echo "<!--\r\n";
debug_print_backtrace();
echo "-->\r\n";
}