디비이전후 글쓰기 에러좀 봐주세요 정보
디비이전후 글쓰기 에러좀 봐주세요본문
디비이전을 하고 글을 쓰니 이런에러가 뜹니다
select MD5(CONCAT(wr_ip, wr_subject, wr_content)) as prev_md5 from g4_write_notice order by wr_id desc limit 1
1270 : Illegal mix of collations (euckr_korean_ci,IMPLICIT), (koi8u_general_ci,IMPLICIT), (euckr_korean_ci,IMPLICIT) for operation 'concat'
error file : /webadmin/bbs/write_update.php
이건 무슨 에러인지요?
select MD5(CONCAT(wr_ip, wr_subject, wr_content)) as prev_md5 from g4_write_notice order by wr_id desc limit 1
1270 : Illegal mix of collations (euckr_korean_ci,IMPLICIT), (koi8u_general_ci,IMPLICIT), (euckr_korean_ci,IMPLICIT) for operation 'concat'
error file : /webadmin/bbs/write_update.php
이건 무슨 에러인지요?
댓글 전체

wr_ip, wr_subject, wr_content 의 인코딩이 틀려서 그렇습니다.
phpMyadmin 이 설치 되어 있으면 해당 테이블의 Collation을 euckr_korean_ci 로 변경해 보세요
phpMyadmin 이 설치 되어 있으면 해당 테이블의 Collation을 euckr_korean_ci 로 변경해 보세요
감사합니다