11 years ago

11 years ago

General Troubleshooting

3352

PHP Strict Mode

Some PHP installs have Strict Mode enabled. When Strict Mode is enabled you might see a number of notices or warnings in the web interface.

If you see these errors you can safely disable Strict Mode.

To disable:

  1. Open index.php (found on your web server in the root folder that the application is installed in).
  2. Underneath the namespace line add the following:
error_reporting(0);
ini_set('display_errors', '0');
You can also try upgrading to the latest version of the application as we do attempt to clean up any of these notices.