최근게시물 오류 문의드립니다. 정보
최근게시물 오류 문의드립니다.본문
최근게시물을 오랜만에 해서 다 잊어버렸네요 ㅠㅜ .
주소는 http://renderbit.co.kr/index.php 입니다.
아래 오류문구가 뜹니다
Warning: include_once(/_common.php) [function.include-once]: failed to open stream: No such file or directory in /home/hosting_users/daniel0714/www/index.php on line 4
Warning: include_once() [function.include]: Failed opening '/_common.php' for inclusion (include_path='.:/usr/local/lib/php') in /home/hosting_users/daniel0714/www/index.php on line 4
Warning: include_once(/lib/latest.lib.php) [function.include-once]: failed to open stream: No such file or directory in /home/hosting_users/daniel0714/www/index.php on line 5
Warning: include_once() [function.include]: Failed opening '/lib/latest.lib.php' for inclusion (include_path='.:/usr/local/lib/php') in /home/hosting_users/daniel0714/www/index.php on line 5
Warning: include_once(/_head.php) [function.include-once]: failed to open stream: No such file or directory in /home/hosting_users/daniel0714/www/index.php on line 8
Warning: include_once() [function.include]: Failed opening '/_head.php' for inclusion (include_path='.:/usr/local/lib/php') in /home/hosting_users/daniel0714/www/index.php
상단 소스는
<?
// $g4_path = "/home/hosting_users/daniel0714/www/gnuboard4/"; // common.php 의 상대 경로
$g4_path = "/home/hosting_users/daniel0714/www/gnuboard4/"; // common.php 의 상대 경로
include_once("$g4[path]/_common.php");
include_once("$g4[path]/lib/latest.lib.php");
$g4['title'] = "";
include_once("$g4[path]/_head.php");
?>
이고
최근게시물 부분 소스는 <? echo latest("basic", "notice", 4, 40) ?> 입니다.
주소는 http://renderbit.co.kr/index.php 입니다.
아래 오류문구가 뜹니다
Warning: include_once(/_common.php) [function.include-once]: failed to open stream: No such file or directory in /home/hosting_users/daniel0714/www/index.php on line 4
Warning: include_once() [function.include]: Failed opening '/_common.php' for inclusion (include_path='.:/usr/local/lib/php') in /home/hosting_users/daniel0714/www/index.php on line 4
Warning: include_once(/lib/latest.lib.php) [function.include-once]: failed to open stream: No such file or directory in /home/hosting_users/daniel0714/www/index.php on line 5
Warning: include_once() [function.include]: Failed opening '/lib/latest.lib.php' for inclusion (include_path='.:/usr/local/lib/php') in /home/hosting_users/daniel0714/www/index.php on line 5
Warning: include_once(/_head.php) [function.include-once]: failed to open stream: No such file or directory in /home/hosting_users/daniel0714/www/index.php on line 8
Warning: include_once() [function.include]: Failed opening '/_head.php' for inclusion (include_path='.:/usr/local/lib/php') in /home/hosting_users/daniel0714/www/index.php
상단 소스는
<?
// $g4_path = "/home/hosting_users/daniel0714/www/gnuboard4/"; // common.php 의 상대 경로
$g4_path = "/home/hosting_users/daniel0714/www/gnuboard4/"; // common.php 의 상대 경로
include_once("$g4[path]/_common.php");
include_once("$g4[path]/lib/latest.lib.php");
$g4['title'] = "";
include_once("$g4[path]/_head.php");
?>
이고
최근게시물 부분 소스는 <? echo latest("basic", "notice", 4, 40) ?> 입니다.
댓글 전체
$g4_path = "/home/hosting_users/daniel0714/www/gnuboard4/"; // common.php 의 상대 경로
include_once("$g4[path]/_common.php");
를 아래로 변경하시면 됩니다
$g4_path = "gnuboard4"; // common.php 의 상대 경로
include_once("$g4_path/common.php");
include_once("$g4[path]/_common.php");
를 아래로 변경하시면 됩니다
$g4_path = "gnuboard4"; // common.php 의 상대 경로
include_once("$g4_path/common.php");
고맙습니다 적용전이지만 답변 감사합니다.