When using CakePHP with PHP 5.3.0 you will get tons of depricated errors like
Deprecated: Assigning the return value of new by reference is deprecated in /data/workspace/us/htdocs/tixi/cake/libs/debugger.php on line 99
You can fix this by changing the default error_reporting value of the debug mode. Open the file
cake/libs/configure.php
And replace the line 295:
$ diff configure.php configure.php.new
295c295
< error_reporting(E_ALL);
---
> error_reporting(E_ALL & ~E_DEPRICATED);