Re: E_STRICT error popping up in production.

2013-06-20 Thread Dakota
I have an E_STRICT error popping in up in production even if CORE_DEBUG = 0 Our error handler in core.php is: Configure::write('Error', array( 'handler' = 'ErrorHandler::handleError', 'level' = E_ALL ~E_DEPRECATED, 'trace' = true )); Do I need to have 'level' = E_ALL ~E_DEPRECATED

Re: E_STRICT error popping up in production.

2013-06-20 Thread euromark
Yes, for PHP5.3 and higher you need to explicitly eclude estrict now Am Donnerstag, 20. Juni 2013 03:41:15 UTC+2 schrieb Chris Cinelli: We are on cakePHP 2.2.1 I have an E_STRICT error popping in up in production even if CORE_DEBUG = 0 Our error handler in core.php is: Configure::write

Re: E_STRICT error popping up in production.

2013-06-20 Thread Chris Cinelli
:15 UTC+2 schrieb Chris Cinelli: We are on cakePHP 2.2.1 I have an E_STRICT error popping in up in production even if CORE_DEBUG = 0 Our error handler in core.php is: Configure::write('Error', array( 'handler' = 'ErrorHandler::handleError', 'level' = E_ALL ~E_DEPRECATED, 'trace' = true

E_STRICT error popping up in production.

2013-06-19 Thread Chris Cinelli
We are on cakePHP 2.2.1 I have an E_STRICT error popping in up in production even if CORE_DEBUG = 0 Our error handler in core.php is: Configure::write('Error', array( 'handler' = 'ErrorHandler::handleError', 'level' = E_ALL ~E_DEPRECATED, 'trace' = true )); Do I need to have 'level' = E_ALL

Re: E_STRICT error popping up in production.

2013-06-19 Thread Chris Cinelli
Just to make it clear. It pops up in the browser. On Wed, Jun 19, 2013 at 6:41 PM, Chris Cinelli chris.cine...@formativelearning.com wrote: We are on cakePHP 2.2.1 I have an E_STRICT error popping in up in production even if CORE_DEBUG = 0 Our error handler in core.php is: Configure