Hello Friends,
If you are new in cakephp you might face issue like error not display on screen rather than a blank screen appear. To avoid this problem you need to open "/var/www/html/nyxmyx/app/Config/core.php" and set variable as below
Configure::write('debug',0); //default 0 mean no error, notices, warning will display
// need to change this value
Configure::write('debug',1); //Errors and warnings shown, model caches refreshed, flash messages halted.
Configure::write('debug',2); //As in 1, but also with full debug messages and SQL output.
0 Comment(s)