그누보드
[튜닝]
[정보] 그누보드 재설치시 필수적으로 수정해야하는 내용들.. (계속업데이트)
로빈아빠
본문
js/common.js 에서 width=616 을 찾아 width=620 으로 바꿔주면, 쪽지창, 포인트창, 패스워트찾기창, 스크랩창들의 가로스크롤이 없어집니다
http://sir.co.kr/bbs/board.php?bo_table=g4_tiptech&wr_id=21484
-------------
/style.css 에서 img {border:0px none;-ms-interpolation-mode: bicubic;} IE7 에서 계단현상없어짐
http://www.actrun.com/bbs/board.php?bo_table=tip_gnu&wr_id=90
-------------
/bbs/index.php를 다음과 같이 만들면 .. /bbs/?bd=test 과 같이 사용가능하다.
<?
if (!$_REQUEST[bo_table]&&$_GET[bd]) $_GET[bo_table]=$_GET[bd];
include_once "./board.php";
?>
-------------
/bbs/move_update.php 댓글 이동 패치:http://sir.co.kr/bbs/board.php?bo_table=g4_tiptech&wr_id=18926
$sql2 = " select * from $write_table where wr_num = '$wr_num' order by wr_parent, wr_is_comment, wr_comment desc, wr_id ";
-------------
관리자모드에서 게시판 복사등에서 alert() 창 메시지 깨어질때.
/adm/board_copy_update.php
에서 javascript:alert() 위에
include_once "$g4[path]/head.sub.php"; 넣어준다.
------------------
본문이 길경우 기존의 wr_content 타입이 text 이기때문에 뒷부분은 짤린다.
그래서 타입을 자동으로 늘려준다.
/bbs/write_update.php 의 상단부분에
넣어준다.
//내용이 64K보다 길면 MEDIUMTEXT 타입으로 변경한다.
if (strlen($_POST[wr_content])>64*1024) {
$result2 = sql_query("SELECT wr_content FROM $write_table limit 1");
if (mysql_field_type($result2, 0)!="blob"||mysql_field_len($result2,0)<50331645) {
sql_query("ALTER TABLE $write_table CHANGE wr_content wr_content MEDIUMTEXT");
}
}
http://sir.co.kr/bbs/board.php?bo_table=g4_tiptech&wr_id=21484
-------------
/style.css 에서 img {border:0px none;-ms-interpolation-mode: bicubic;} IE7 에서 계단현상없어짐
http://www.actrun.com/bbs/board.php?bo_table=tip_gnu&wr_id=90
-------------
/bbs/index.php를 다음과 같이 만들면 .. /bbs/?bd=test 과 같이 사용가능하다.
<?
if (!$_REQUEST[bo_table]&&$_GET[bd]) $_GET[bo_table]=$_GET[bd];
include_once "./board.php";
?>
-------------
/bbs/move_update.php 댓글 이동 패치:http://sir.co.kr/bbs/board.php?bo_table=g4_tiptech&wr_id=18926
$sql2 = " select * from $write_table where wr_num = '$wr_num' order by wr_parent, wr_is_comment, wr_comment desc, wr_id ";
-------------
관리자모드에서 게시판 복사등에서 alert() 창 메시지 깨어질때.
/adm/board_copy_update.php
에서 javascript:alert() 위에
include_once "$g4[path]/head.sub.php"; 넣어준다.
------------------
본문이 길경우 기존의 wr_content 타입이 text 이기때문에 뒷부분은 짤린다.
그래서 타입을 자동으로 늘려준다.
/bbs/write_update.php 의 상단부분에
넣어준다.
//내용이 64K보다 길면 MEDIUMTEXT 타입으로 변경한다.
if (strlen($_POST[wr_content])>64*1024) {
$result2 = sql_query("SELECT wr_content FROM $write_table limit 1");
if (mysql_field_type($result2, 0)!="blob"||mysql_field_len($result2,0)<50331645) {
sql_query("ALTER TABLE $write_table CHANGE wr_content wr_content MEDIUMTEXT");
}
}
댓글목록
피우스님의 댓글
피우스 작성일
/bbs/index.php를 다음과 같이 만들면 .. /bbs/?bd=test 과 같이 사용가능하다.
<?
if (!$_REQUEST[bo_table]&&$_GET[bd]) $_GET[bo_table]=$_GET[bd];
include_once "./board.php";
?>
이거를 적용하려면 어떻게 해야할지 모르겠네요. 우선 위대로 했는데...
수동으로 주소 입력해서 들어가면 뜨긴하는데 여기 사이트처럼 게시물 클릭하면 자동으로 주소를 변환된 상태로 출력되게 하려면 어찌해야하나요?
함석길님의 댓글
함석길 작성일감사합니다...좋은 정보와 자료가 되네요...^^