PHP Notice: Undefined index: 해결 방법
프로그래밍/PHP2017. 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 스택 개발자의 일상]
반응형
'프로그래밍 > PHP' 카테고리의 다른 글
: Cannot modify header information - headers already sent by (0) | 2018.07.21 |
---|---|
php 7 에서 문자열 치환하기 (0) | 2017.12.08 |
숫자와 문자 데이타가 섞인 데이터의 정렬 (0) | 2017.09.01 |
mysql 레코드를 가져오는 방법중 하나 (0) | 2017.09.01 |
php 로 소켓 프로그램 만들기 (다중 처리, 멀티스레드) (0) | 2016.10.28 |
댓글()