Quote:
Originally Posted by Jasiu
To fix the issues change the following:
unreq.php in ADMINCP
PHP Code:
// ######################## SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL);
Change to:
PHP Code:
// ######################## SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
The error was because of notice reporting. You forgot to tell PHP not to report the notices.
|
Hmmm... that's not really a fix, but merely an option to not see any php-errors. I prefer not to disable that php-error-report feature.