MySQL 5.5.x 버젼 사용할때 에러가 발생합니다.

· 15년 전 · 4223 · 4
error.JPG
게시판 글 작성할때 위의 그림처럼 에러가 발생합니다. 그러나 데이터는 저장됩니다.


그누보드 처음 설치할때 테이블 생성시 아래 에러가 발생하지만 테이블은 만들어 집니다.

Notice: Undefined index: path in C:\xampp\htdocs\utf8\config.php on line 10

Notice: Undefined index: path in C:\xampp\htdocs\utf8\config.php on line 12

Notice: Undefined index: path in C:\xampp\htdocs\utf8\config.php on line 15

Notice: Undefined index: path in C:\xampp\htdocs\utf8\config.php on line 18

Notice: Undefined index: path in C:\xampp\htdocs\utf8\config.php on line 21

Notice: Undefined index: path in C:\xampp\htdocs\utf8\config.php on line 24

Notice: Use of undefined constant mysql_host - assumed 'mysql_host' in C:\xampp\htdocs\utf8\install\install_db.php on line 25

Notice: Use of undefined constant mysql_user - assumed 'mysql_user' in C:\xampp\htdocs\utf8\install\install_db.php on line 26

Notice: Use of undefined constant mysql_pass - assumed 'mysql_pass' in C:\xampp\htdocs\utf8\install\install_db.php on line 27

Notice: Use of undefined constant mysql_db - assumed 'mysql_db' in C:\xampp\htdocs\utf8\install\install_db.php on line 28

Notice: Use of undefined constant admin_id - assumed 'admin_id' in C:\xampp\htdocs\utf8\install\install_db.php on line 29

Notice: Use of undefined constant admin_pass - assumed 'admin_pass' in C:\xampp\htdocs\utf8\install\install_db.php on line 30

Notice: Use of undefined constant admin_name - assumed 'admin_name' in C:\xampp\htdocs\utf8\install\install_db.php on line 31

Notice: Use of undefined constant admin_email - assumed 'admin_email' in C:\xampp\htdocs\utf8\install\install_db.php on line 32

Notice: Use of undefined constant charset - assumed 'charset' in C:\xampp\htdocs\utf8\install\install_db.php on line 34

Notice: Use of undefined constant charset - assumed 'charset' in C:\xampp\htdocs\utf8\install\install_db.php on line 43


회원 가입 정보를 입력하고 확인 클릭시 아래 에러가 발생합니다. 그러나 데이터는 저장됩니다.

객체 없음!
요청한 URL을 이 서버에서 찾을 수 없습니다. URL을 직접 입력하셨다면 바르게 입력하셨는지 확인하시고 다시 시도하시기 바랍니다.

만약 이것이 서버 오류라고 생각되면, 웹 관리자에게 연락하시기 바랍니다.

Error 404
localhost
2011-01-30 ¿ÀÀü 1:08:58
Apache/2.2.17 (Win32) mod_ssl/2.2.17 OpenSSL/0.9.8o PHP/5.3.4 mod_perl/2.0.4 Perl/v5.10.1<div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:27:00 MySQL에서 이동 됨]</div>

첨부파일

error.JPG (18.4 KB)
0회 2011-01-30 01:43
|

댓글 4개

설치 환경입니다.(윈도우 XP)
Apache 2.2.17
MySQL 5.5.8
PHP 5.3.5
phpMyAdmin 3.3.9
php 5.3.x 버젼부터는 아마도 배열사용시 상수에 대한 처리를 좀더 엄격하게 처리하는 듯 합니다.
예를들어 $array[var] 라는 배열이 사용되었을때 정석적인 표기는 $array['var'] 이어야 합니다.
왜냐하면 $array 배열에 사용된 var 인자가 상수인지 순수한 문자열인지 변수나 상수가 포함된 문자열인지 모르기 때문입니다.

$array[var] 는 var라는 상수를 먼저 찾게되므로 $array['var'] 로 표기해야 원하는 결과를 얻어낼 수 있구요.. $array["var"] 는 "..." 안에 변수나 상수가 포함되어 있는지도 체크하므로 올바른 표기는 아닙니다. 물론 필요한 경우는 있겠지만요..

에러메세지를 보니 아마도 $배열[mysql_user] 와 같은 표기가 있는 것 같은데, mysql_user 라는 상수가 정의되지 않았는데 사용되고 있으니 $배열['mysql_user'] 로 assumed 된다고 말하고 있네요..
즉, 니가 원하는게 mysql_user 라는 상수가 아니라 'mysql_user' 라는 문자열아니냐 라고 묻고 있습니다.

Notice 레벨의 에러이므로 데이터 Insert 에는 지장이 없습니다.
Notice 레벨의 에러도 무시하려면 error_reporting 관련 설정을 참고해 보세요.
답변 감사 드립니다. ^^
xampp 에 php.ini error_level 부분 살펴보시고 옵션 변경 (주석참고) 하시면 notice는 에러로 안뜹니다.
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

태그 필터 (최대 3개) 전체 개발자 소스 기타 mysql 팁자료실 javascript php linux flash 정규표현식 jquery node.js mobile 웹서버 os 프로그램 강좌 썸네일 이미지관련 도로명주소 그누보드5 기획자 견적서 계약서 기획서 마케팅 제안서 seo 통계 서식 통계자료 퍼블리셔 html css 반응형 웹접근성 퍼블리싱 표준화 반응형웹 홈페이지기초 부트스트랩 angularjs 포럼 스크린리더 센스리더 개발자톡 개발자팁 퍼블리셔톡 퍼블리셔팁 기획자톡 기획자팁 프로그램강좌 퍼블리싱강좌
+
제목 글쓴이 날짜 조회
15년 전 조회 1,990
15년 전 조회 1,736
15년 전 조회 1,302
15년 전 조회 1,116
15년 전 조회 4,581
15년 전 조회 2,949
15년 전 조회 1,290
15년 전 조회 943
15년 전 조회 1,580
15년 전 조회 1,859
15년 전 조회 1,645
15년 전 조회 1,064
15년 전 조회 2,043
15년 전 조회 3,372
15년 전 조회 1,519
15년 전 조회 1,447
15년 전 조회 1,265
15년 전 조회 1,084
15년 전 조회 947
15년 전 조회 1,034
15년 전 조회 2,211
15년 전 조회 1,261
15년 전 조회 1,631
15년 전 조회 3,837
15년 전 조회 1,553
15년 전 조회 1,698
15년 전 조회 1,410
15년 전 조회 1,392
15년 전 조회 1,988
15년 전 조회 1,767
15년 전 조회 1,331
15년 전 조회 1,661
15년 전 조회 1,659
15년 전 조회 1,843
15년 전 조회 1,665
15년 전 조회 1,456
15년 전 조회 2,045
15년 전 조회 1,315
15년 전 조회 1,273
15년 전 조회 1,233
15년 전 조회 1,392
15년 전 조회 1,695
15년 전 조회 1,486
15년 전 조회 1,761
15년 전 조회 1,684
15년 전 조회 4,198
15년 전 조회 1,906
15년 전 조회 1,444
15년 전 조회 1,544
15년 전 조회 4,224
15년 전 조회 2,107
15년 전 조회 1,277
15년 전 조회 1,678
15년 전 조회 1,173
15년 전 조회 1,770
15년 전 조회 1,415
15년 전 조회 3,206
15년 전 조회 1,080
15년 전 조회 1,432
15년 전 조회 3,255
15년 전 조회 1,261
15년 전 조회 1,296
15년 전 조회 1,547
15년 전 조회 1,531
15년 전 조회 1,218
15년 전 조회 2,799
15년 전 조회 1,271
15년 전 조회 1,664
15년 전 조회 781
15년 전 조회 1,540
15년 전 조회 1,493
15년 전 조회 1,630
15년 전 조회 3,421
15년 전 조회 1,015
15년 전 조회 1,297
15년 전 조회 1,353
15년 전 조회 1,850
15년 전 조회 1,787
15년 전 조회 2,805
15년 전 조회 2,210
15년 전 조회 1,755
15년 전 조회 1,971
15년 전 조회 3,540
15년 전 조회 2,181
15년 전 조회 1,701
15년 전 조회 1,783
15년 전 조회 1,486
15년 전 조회 1,362
15년 전 조회 1,322
15년 전 조회 1,706
15년 전 조회 1,274
15년 전 조회 1,669
15년 전 조회 1,386
15년 전 조회 1,221
15년 전 조회 1,469
15년 전 조회 1,602
15년 전 조회 1,333
15년 전 조회 1,842
15년 전 조회 1,623
15년 전 조회 1,867