2009年11月24日 星期二

Avoid Deprecated: Assigning the return value of new by reference is deprecated in...

Preventing Warning Message from Cakephp 
Message: Deprecated: Assigning the return value of new by reference is deprecated in...
Solution: Modify cake/libs/configure.php
< ?php
if (isset($config['debug'])) {
if ($_this->debug) {
error_reporting(E_ALL);
// add below contents
if (error_reporting() > 6143) {
error_reporting(E_ALL & ~E_DEPRECATED);
}
?>




沒有留言:

張貼留言