웹개발/PHP
PHP Notice: Undefined index: 해결 방법
CodeChef
2013. 12. 16. 22:34
반응형
Notice: Undefined index: idx in /home/data/html/board/index.php on line 7
Notice: Undefined index: NO_AUTO_LOGIN in /home/data/html/common/common.sub on line 1456
와 같은 애러 발생시 소스코드를 수정하실 필요 없습니다.
php.ini 파일을 에디터로 엽니다.
vi /etc/php.ini
;error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT
error_reporting = E_ALL & ~E_NOTICE
error_reporting 을 E_ALL & ~E_NOTICE로 수정해 주신 후,
저장 (:wq! ) 하시고,
WAS(httpd) 를 재시작 해주시면 됩니다.
service httpd restart
반응형