How to solve 500 undefined message YII? -
i'm working on yii
, 500 undefined message
. not tell me lot. how can what's problem? there any debug mode
it?
this may php notice.
due undefined variables coming.
put these below line in index.php
error_reporting(e_error | e_warning | e_parse | e_notice | e_strict | e_deprecated); error_reporting(e_all ^ e_notice);
should this
error_reporting(e_error | e_warning | e_parse | e_notice | e_strict | e_deprecated); error_reporting(e_all ^ e_notice); require_once($yii); yii::createwebapplication($config)->run();
Comments
Post a Comment