변수가 선언되지않았습니다. 정보
변수가 선언되지않았습니다.본문
오류가 나는곳의 주소를 알려주시면 더 빠르고 정확하게 답변 받을 수 있습니다.
g4_path 변수가 선언되지 않았습니다. js/capslook.js 라는애러가나네요
<html>
<head>
<?
$g4_path = "../../board";
include_once("$g4_path/common.php");
include_once("$g4[path]/lib/outlogin.lib.php");
?>
<meta http-equiv="content-type" content="text/html; charset=euc-kr">
<title>제목 없음</title>
<meta name="generator" content="Namo WebEditor2008">
</head>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red" leftmargin="0" marginwidth="0" topmargin="0" marginheight="0">
<?echo outlogin("basic"); ?>
</body>
</html>
위에가 소스거든요~ 아웃로그인만넣으면 그러네요 ㅠ
최근게시물은 멀쩡히 동작하던데
g4_path 변수가 선언되지 않았습니다. js/capslook.js 라는애러가나네요
<html>
<head>
<?
$g4_path = "../../board";
include_once("$g4_path/common.php");
include_once("$g4[path]/lib/outlogin.lib.php");
?>
<meta http-equiv="content-type" content="text/html; charset=euc-kr">
<title>제목 없음</title>
<meta name="generator" content="Namo WebEditor2008">
</head>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red" leftmargin="0" marginwidth="0" topmargin="0" marginheight="0">
<?echo outlogin("basic"); ?>
</body>
</html>
위에가 소스거든요~ 아웃로그인만넣으면 그러네요 ㅠ
최근게시물은 멀쩡히 동작하던데
댓글 전체

가끔 인크루드가 맨위에 없으면 뜰수도 있는 에러입니다.
<?
$g4_path = "../../board";
include_once("$g4_path/common.php");
include_once("$g4[path]/lib/outlogin.lib.php");
?>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=euc-kr">
<title>제목 없음</title>
<meta name="generator" content="Namo WebEditor2008">
</head>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red" leftmargin="0" marginwidth="0" topmargin="0" marginheight="0">
<?echo outlogin("basic"); ?>
</body>
</html>
이렇게 해보세요
<?
$g4_path = "../../board";
include_once("$g4_path/common.php");
include_once("$g4[path]/lib/outlogin.lib.php");
?>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=euc-kr">
<title>제목 없음</title>
<meta name="generator" content="Namo WebEditor2008">
</head>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red" leftmargin="0" marginwidth="0" topmargin="0" marginheight="0">
<?echo outlogin("basic"); ?>
</body>
</html>
이렇게 해보세요
딴방법으로 해결했습니다. ㅎㅎ 답변감사합니다.
include_once("$g4[path]/head.sub.php"); <--이거 추가하니까 해결되네요
include_once("$g4[path]/head.sub.php"); <--이거 추가하니까 해결되네요

아.. 헤드가 없었군요 ^^