그누보드 관리자 페이지가 안뜹니다.
본문
안녕하세요. 질문이 있습니다.
닷홈의 그누보드 설치포함된 무료계정으로 쓰는중인데요.
ftp는 html/gnuboard4 로 그누보드를 쓰고 있고 홈페이지의 index.html(메인페이지)는 html/index.html
로 되어 있어서
<? include_once("./gnuboard4/_common.php"); include_once("$g4[path]/lib/latest.lib.php"); ?>
이렇게 고치고 보드 내의 _common.php도
<? $g4_path = "./gnuboard4/"; // common.php 의 상대 경로
include_once("$g4_path/common.php"); ?>
이렇게 고쳤어요.
그것만 고치고 메인페이지에서 최근게시물 형식으로 게시판이 잘 보여서 된다 싶었는데
그누보드 관리자 페이지인 /gnuboard4/index.php 로 들어가니
Warning: include_once(./gnuboard4//common.php): failed to open stream: No such file or directory in
이런 오류가 뜨는데 어떤걸 고쳐야 하나요? 이것때문에 게시판 설정을 못하고 있어요.
부탁드립니다.
답변 2
<? $g4_path = "./gnuboard4/"; // common.php 의 상대 경로
include_once("$g4_path/common.php"); ?>
빨간거 삭제
html/gnuboard4 내의 _common.php는 원본 그대로 $g4_path = "."; <--이렇게 되어야합니다
html폴더내의 _common.php에서는 $g4_path = "./gnuboard4"; <--이렇게 되어야 합니다
그누보드 관리자 페이지인 /gnuboard4/index.php <--이것이 아니라 /gnuboard4/adm/index.php 입니다