정말 당황스런 오륜데요 정보
정말 당황스런 오륜데요
본문
Warning: include_once(/match/_head.php) [function.include-once]: failed to open stream: No such file or directory in /home/toolsmap/public_html/match/index.php on line 2
Warning: include_once() [function.include]: Failed opening '/match/_head.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/toolsmap/public_html/match/index.php on line 2
이런오류가 나고 있는데요
분명 경로는 /match/_head.php 여기가 맞거든요
그누보드 되어있는게요
근데 왜 인크루드가 안될까요?
<?
include_once("/match/_head.php");
?>
두째줄이 이거거든요
Warning: include_once() [function.include]: Failed opening '/match/_head.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/toolsmap/public_html/match/index.php on line 2
이런오류가 나고 있는데요
분명 경로는 /match/_head.php 여기가 맞거든요
그누보드 되어있는게요
근데 왜 인크루드가 안될까요?
<?
include_once("/match/_head.php");
?>
두째줄이 이거거든요
댓글 전체
include_once("$g4[path]/_head.php");
그렇게 해봤지만 안됩니다.
루트가 /public_html 여기 폴더이구요 /public_html/match 여기에 그누보드를 올렸는데 /public_html/match/search/partner/index.php 여기서 /public_html/match/_head.php 를 인크르드 하려 하고 있습니다. /public_html/match/index.php여기 있는 인덱스는 include_once("./_head.php"); 이렇게 인크루드가 잘되고 있는데 /public_html/match/search/partner/index.php 여기에선 저 상위 메세지가 나오고 있습니다
/match/search/partner/_common.php
/match/search/partner/index.php
/match/_head.php
index.php 파일 최상위에다가 다음과 같은 1줄을 추가해주시고요.
include_once("./_common.php");
include_once("$g4[path]/_head.php");
동일 폴더에 _common.php 파일을 하나 생성합니다.
<?
$g4_path = "../.."; // common.php 의 상대 경로
include_once("$g4_path/common.php");
?>
/match/search/partner/index.php
/match/_head.php
index.php 파일 최상위에다가 다음과 같은 1줄을 추가해주시고요.
include_once("./_common.php");
include_once("$g4[path]/_head.php");
동일 폴더에 _common.php 파일을 하나 생성합니다.
<?
$g4_path = "../.."; // common.php 의 상대 경로
include_once("$g4_path/common.php");
?>
오마이갓 감사합니다.
근데 이번엔 왜
Warning: Cannot modify header information - headers already sent by (output started at /home/toolsmap/public_html/match/search/partner/_common.php:4) in /home/toolsmap/public_html/match/head.sub.php on line 40
Warning: Cannot modify header information - headers already sent by (output started at /home/toolsmap/public_html/match/search/partner/_common.php:4) in /home/toolsmap/public_html/match/head.sub.php on line 42
Warning: Cannot modify header information - headers already sent by (output started at /home/toolsmap/public_html/match/search/partner/_common.php:4) in /home/toolsmap/public_html/match/head.sub.php on line 43
Warning: Cannot modify header information - headers already sent by (output started at /home/toolsmap/public_html/match/search/partner/_common.php:4) in /home/toolsmap/public_html/match/head.sub.php on line 44
Warning: Cannot modify header information - headers already sent by (output started at /home/toolsmap/public_html/match/search/partner/_common.php:4) in /home/toolsmap/public_html/match/head.sub.php on line 45
Warning: Cannot modify header information - headers already sent by (output started at /home/toolsmap/public_html/match/search/partner/_common.php:4) in /home/toolsmap/public_html/match/head.sub.php on line 46
헤더 부분이 다 에러가 나죠?
Warning: Cannot modify header information - headers already sent by (output started at /home/toolsmap/public_html/match/search/partner/_common.php:4) in /home/toolsmap/public_html/match/head.sub.php on line 40
Warning: Cannot modify header information - headers already sent by (output started at /home/toolsmap/public_html/match/search/partner/_common.php:4) in /home/toolsmap/public_html/match/head.sub.php on line 42
Warning: Cannot modify header information - headers already sent by (output started at /home/toolsmap/public_html/match/search/partner/_common.php:4) in /home/toolsmap/public_html/match/head.sub.php on line 43
Warning: Cannot modify header information - headers already sent by (output started at /home/toolsmap/public_html/match/search/partner/_common.php:4) in /home/toolsmap/public_html/match/head.sub.php on line 44
Warning: Cannot modify header information - headers already sent by (output started at /home/toolsmap/public_html/match/search/partner/_common.php:4) in /home/toolsmap/public_html/match/head.sub.php on line 45
Warning: Cannot modify header information - headers already sent by (output started at /home/toolsmap/public_html/match/search/partner/_common.php:4) in /home/toolsmap/public_html/match/head.sub.php on line 46
헤더 부분이 다 에러가 나죠?
왠만하면 _common.php 파일은 게시판꺼 붙여넣기 안하시는게 좋습니다 ^^;
공백이 들어가거나 그럼 바로 에러가 나오고
_common.php파일의 인크루드는 최상위에서 이루어 져야 합니다.
<?
include_once($g4[path]."/_common.php");
아래 내용들
?>
이런형식이 되지 않으면 에러 뿜어 냅니다.
_common.php 파일에는 문법 위외의 공백이 들어가면 안되구요
<?
$g4_path = "..";
include_once($g4_path."/common.php");
?>
edit pxxx 사용하시면 옵션에 저장할때 마지막 공백 없에기 << 요거 제일 좋습니다 ㅎㅎ
공백이 들어가거나 그럼 바로 에러가 나오고
_common.php파일의 인크루드는 최상위에서 이루어 져야 합니다.
<?
include_once($g4[path]."/_common.php");
아래 내용들
?>
이런형식이 되지 않으면 에러 뿜어 냅니다.
_common.php 파일에는 문법 위외의 공백이 들어가면 안되구요
<?
$g4_path = "..";
include_once($g4_path."/common.php");
?>
edit pxxx 사용하시면 옵션에 저장할때 마지막 공백 없에기 << 요거 제일 좋습니다 ㅎㅎ
켁
ob_start(); 이걸로 해결했습니다.
ob_start(); 이걸로 해결했습니다.