Page 1 of 1

How to disable E_STRICT for a 1.9.2 install

Posted: Sat Oct 22, 2016 9:32 pm
by toddster
Having trouble disabling E_STRICT for a 1.9.2 install (old, I know but need this for a restore from an old backup).

PHP 5.6.23
Linux 2.6.32-673.26.1.lve1.4.15.el6.x86_64 On x86_64

Have tried adding the following to php.ini in etc/
error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED

with no luck.

Any ideas? Can't get past screen 2 of the install.

toddster

Re: How to disable E_STRICT for a 1.9.2 install

Posted: Sun Oct 23, 2016 1:48 am
by Rolf
Put in config.php:

error_reporting(E_ERROR & ~E_DEPRECATED & ~E_NOTICE);

Re: How to disable E_STRICT for a 1.9.2 install

Posted: Mon Oct 24, 2016 11:37 am
by toddster
Rolf,
Tried this in my config.php but no joy...still seeing E_STRICT as enabled.

toddster