PHP Notice: Undefined index: 해결 방법

프로그래밍/PHP|2017. 12. 1. 17:42
반응형

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_NOTICE

error_reporting 을 E_ALL & ~E_NOTICE로 수정해 주신 후,

저장 (:wq! ) 하시고,

WAS(httpd) 를 재시작 해주시면 됩니다.
service httpd restart



출처: http://codechef.tistory.com/entry/PHP-Notice-Undefined-index-해결-방법 [PHP, MEAN 스택 개발자의 일상]


반응형

댓글()