그누보드5 게시판 추가 에러
관리자 페이지에서
게시판 추가시 에러 뜨네요~!
SHOW COLUMNS FROM `g5_board` WHERE field = 'bo_use_cert'
1064 : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE field = 'bo_use_cert'' at line 1
error file : /g5-5.0b03/adm/board_form.php
게시판 추가시 에러 뜨네요~!
SHOW COLUMNS FROM `g5_board` WHERE field = 'bo_use_cert'
1064 : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE field = 'bo_use_cert'' at line 1
error file : /g5-5.0b03/adm/board_form.php
|
댓글을 작성하시려면 로그인이 필요합니다.
댓글 10개
[code]
$sql = " SHOW COLUMNS FROM `{$g5['board_table']}` WHERE field = 'bo_use_cert' ";
[/code]
위 쿼리문을 아래와 같이 수정합니다.
[code]
$sql = " SHOW COLUMNS FROM `{$g5['board_table']}` LIKE 'bo_use_cert' ";
[/code]
Parse error: syntax error, unexpected T_STRING in C:\Program Files\Apache Group\Apache2\htdocs\g5-5.0b03\adm\board_form.php on line 15
이렇게 나오네요 ~!
if (!isset($board['bo_device'])) {
// 寃뚯떆???ъ슜 ?꾨뱶 異붽?
// both : pc, mobile ?섎떎 ?ъ슜
// pc : pc ?꾩슜 ?ъ슜
// mobile : mobile ?꾩슜 ?ъ슜
// none : ?ъ슜 ?덊븿
이부분인거 같은데...
또한 utf-8을 지원하는 에디터를 이용해 코드를 수정하셔야 합니다.