설치시에 루트에 폴더만들어서 올렸는데. 정보
그누보드 설치시에 루트에 폴더만들어서 올렸는데.관련링크
http://icnapt.cafe24.com
19회 연결
본문
Warning: main(./config.php) [function.main]: failed to create stream: No such file or directory in /home/hosting_users/icnapt/www/index.php on line 25
Warning: main() [function.main]: Failed opening './config.php' for inclusion (include_path='.:/usr/local/lib/php') in /home/hosting_users/icnapt/www/index.php on line 25
Warning: dir(./lib) [function.dir]: failed to open dir: No such file or directory in /home/hosting_users/icnapt/www/index.php on line 29
Fatal error: Call to a member function on a non-object in /home/hosting_users/icnapt/www/index.php on line 30
////////////.........
// 이 상수가 정의되지 않으면 각각의 개별 페이지는 별도로 실행될 수 없음
define("_GNUBOARD_", TRUE);
include './config.php';
// 3.23
// lib 디렉토리에 어떤 라이브러리 파일을 넣어도 index.php 를 수정할 필요가 없음
$tmp = dir("./lib");
while ($entry = $tmp->read()) {
// 3.24 수정
if ($entry{0} == ".") continue; // 첫문자가 "."이면 무시한다
include "./lib/" . $entry;
}
header_cache();
//==============================================================================
// 공통
25번째줄은 include './config.php'; 이부분입니다.
Warning: main() [function.main]: Failed opening './config.php' for inclusion (include_path='.:/usr/local/lib/php') in /home/hosting_users/icnapt/www/index.php on line 25
Warning: dir(./lib) [function.dir]: failed to open dir: No such file or directory in /home/hosting_users/icnapt/www/index.php on line 29
Fatal error: Call to a member function on a non-object in /home/hosting_users/icnapt/www/index.php on line 30
////////////.........
// 이 상수가 정의되지 않으면 각각의 개별 페이지는 별도로 실행될 수 없음
define("_GNUBOARD_", TRUE);
include './config.php';
// 3.23
// lib 디렉토리에 어떤 라이브러리 파일을 넣어도 index.php 를 수정할 필요가 없음
$tmp = dir("./lib");
while ($entry = $tmp->read()) {
// 3.24 수정
if ($entry{0} == ".") continue; // 첫문자가 "."이면 무시한다
include "./lib/" . $entry;
}
header_cache();
//==============================================================================
// 공통
25번째줄은 include './config.php'; 이부분입니다.
댓글 전체