스킨오류관련 정보
스킨오류관련
첨부파일
본문
스킨을 깔았는데
글쓰는부분도 없고...
참난감한 상황입니다...
그리고 스킨에 geditor랑 cheditor4를 어떻게 적용시키는지좀 알려주시면 감사하겠습니다.^^
사용된스킨 http://sir.co.kr/bbs/board.php?bo_table=g4_skin&wr_id=81391&sca=&sfl=wr_subject&stx=%BC%EE%C7%CE&sop=and
화면보시면 아래에 글쓰기도 안되고 있습니당.
댓글 전체
기다림의 미학 - 기다리고 계실 것 같아 그냥 지나갈 수 없네요^^
그래서 홈페이지를 보니 지금도 에러가 수정이 되지 않았네요.
write_skin.php 파일 상단에 보시면 아래 소스 부분이 보입니다.
9번째 줄이네요
<script src="<?=$g4[editor_path]?>/cheditor.js"></script>
<?=cheditor1('wr_content', $content);?>
이부분을 아래와 같이 수정해서 해 보세요.
<?=include_once("$g4[path]/lib/cheditor.lib.php");?>
<script src="<?=$g4[editor_path]?>/cheditor.js"></script>
<?=cheditor1('wr_content', $content);?>
그리고 lib폴더에 cheditor.lib.php파일이 있는지 확인하시구요.
잘되시길....
그래서 홈페이지를 보니 지금도 에러가 수정이 되지 않았네요.
write_skin.php 파일 상단에 보시면 아래 소스 부분이 보입니다.
9번째 줄이네요
<script src="<?=$g4[editor_path]?>/cheditor.js"></script>
<?=cheditor1('wr_content', $content);?>
이부분을 아래와 같이 수정해서 해 보세요.
<?=include_once("$g4[path]/lib/cheditor.lib.php");?>
<script src="<?=$g4[editor_path]?>/cheditor.js"></script>
<?=cheditor1('wr_content', $content);?>
그리고 lib폴더에 cheditor.lib.php파일이 있는지 확인하시구요.
잘되시길....
감사합니다
ㅗ