로그인 페이지에 헤드와 테일을 추가하고 싶은데...
기본 디폴트 login.php 에서 헤드와 테일을 보이고 싶은데.....
<?
include_once("./_common.php");
$g4[title] = "로그인";
//include_once("./_head.php");
include_once("$g4[path]/head.sub.php");
if ($board[bo_include_head]) { @include ($board[bo_include_head]); }
if ($board[bo_content_head]) { echo stripslashes($board[bo_content_head]); }
// 이미 로그인 중이라면
if ($member[mb_id])
{
if ($url)
goto_url($url);
else
goto_url($g4[path]);
}
if ($url)
$urlencode = urlencode($url);
else
$urlencode = urlencode($_SERVER[REQUEST_URI]);
$member_skin_path = "$g4[path]/skin/member/$config[cf_member_skin]";
include_once("$member_skin_path/login.skin.php");
if ($board[bo_content_tail]) { echo stripslashes($board[bo_content_tail]); }
if ($board[bo_include_tail]) { @include ($board[bo_include_tail]); }
include_once("$g4[path]/tail.sub.php");
?>
사진처럼 떨그렁이 스킨 적용한것만...저렇게 나와서요....
어떻게 하면 ;; 될까요~;;;
상단과 하단을 추가하고 싶으면 llogin.php에서 수정하는거 맞죠?
<?
include_once("./_common.php");
$g4[title] = "로그인";
//include_once("./_head.php");
include_once("$g4[path]/head.sub.php");
if ($board[bo_include_head]) { @include ($board[bo_include_head]); }
if ($board[bo_content_head]) { echo stripslashes($board[bo_content_head]); }
// 이미 로그인 중이라면
if ($member[mb_id])
{
if ($url)
goto_url($url);
else
goto_url($g4[path]);
}
if ($url)
$urlencode = urlencode($url);
else
$urlencode = urlencode($_SERVER[REQUEST_URI]);
$member_skin_path = "$g4[path]/skin/member/$config[cf_member_skin]";
include_once("$member_skin_path/login.skin.php");
if ($board[bo_content_tail]) { echo stripslashes($board[bo_content_tail]); }
if ($board[bo_include_tail]) { @include ($board[bo_include_tail]); }
include_once("$g4[path]/tail.sub.php");
?>
사진처럼 떨그렁이 스킨 적용한것만...저렇게 나와서요....
어떻게 하면 ;; 될까요~;;;
상단과 하단을 추가하고 싶으면 llogin.php에서 수정하는거 맞죠?
첨부파일
|
댓글을 작성하시려면 로그인이 필요합니다.
댓글 3개
include_once("$g4[path]/head.sub.php");
...
include_once("$g4[path]/tail.sub.php");
--> include_once("./_head.php"); 부분에 주석이 되어져 있네요 해제 하시고
--> include_once("$g4[path]/head.sub.php"); 삭제 하시고
--> tail.sub.php 부분을 _tail.php 로 수정하세요
처음에 그누보드 설치할떄 나오던 그누보드 상단 타이틀에 좌측엔 회원접속인원 나오고 아래에는
COPYRIGHT YOUR RIGHT ALLRIGHT RESERVED 이게 뜨네요..
디폴트가 뜨는데...
그런데 패스워드 기입하는데는 현재 구성된 헤드와 테일이 뜨는데... 이상하네요;;;;
경로는 같은데....
사이트 주소를 알려주시면 좀더 확인 해 보겠습니다.