Go to your Config / core.php and find the error handler configuration:
Configure::write('Error', array( 'handler' => 'ErrorHandler::handleError', 'level' => E_ALL & ~E_DEPRECATED, 'trace' => true ));
and replace 'level' with this:
... 'level' => E_ALL & ~E_STRICT & ~E_DEPRECATED, ...
Claudio bredfeldt
source share