The error message suggests a very fundamental problem, with syntax.
Looking at each of the errors....
check.php, line 374 is the beginning of a try/catch block.
inc.ClassSettings, line 847 is the beginning of a try/catch block
I suspect this will fail to parse on line 1.
What version of PHP are you running?
Looking at each of the errors....
check.php, line 374 is the beginning of a try/catch block.
inc.ClassSettings, line 847 is the beginning of a try/catch block
I suspect this will fail to parse on line 1.
Code:
<?php
try {
$error = 'Throw this error';
throw new Exception($error);
echo 'Never get here';
}
catch (Exception $e)
{
echo 'Exception caught: ', $e->getMessage(), "\n";
}
?>
What version of PHP are you running?
Code:
<?php
php_info();
?>
(03-25-2012, 04:49 AM)yerg Wrote: Parse error: syntax error, unexpected '{' in letodms/check.php on line 374