Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Lost in an Install Loop
#23
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.
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

Reply


Messages In This Thread
Lost in an Install Loop - by yerg - 03-18-2012, 11:18 AM

Forum Jump:


Users browsing this thread: