달력스킨을 사용하는데.. 정보
달력스킨을 사용하는데..본문
최근게시물에서 날짜클릭하면 팝업창이 뜨는게 안되네요..ㅠㅠ
다른것들은 다 잘 되는데 이것만 왜 안되는지 이해가 안됩니다.
지금 그누보드는 ilbung라는 폴더 안에 있구요
_common.php
<?
$g4_path = "ilbung"; // common.php 의 상대 경로
include_once("$g4_path/common.php");
?>
$g4_path = "ilbung"; // common.php 의 상대 경로
include_once("$g4_path/common.php");
?>
_head.php
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
include_once("$g4[path]/head.php");
?>
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
include_once("$g4[path]/head.php");
?>
이렇게 했습니다.
그리고 index 에서는
<?
include "./ilbung/_common.php";
include "./ilbung/_common.php";
include_once("$g4[path]/lib/latest.lib.php");
include_once("$g4[path]/lib/outlogin.lib.php");
include_once("$g4[path]/head.php");
?>
include_once("$g4[path]/lib/outlogin.lib.php");
include_once("$g4[path]/head.php");
?>
이렇게 내렸습니다.
게시판을 붙여도 셋팅을 이렇게 하니 잘 되었습니다.
근데.. 달력소스는 왜 안되는지 모르겠습니다..
제작자 분들께는 죄송합니다..
제가 개념부터 안잡고 소스를 만져서..ㅠㅠ
알려주세요..
댓글 전체
에러가 올라오는걸로 봐서는...
Warning: main(ilbung/common.php) [function.main]: failed to create stream: No such file or directory in /home/hosting_users/ilbung/www/ilbung/_common.php on line 3
세번째라인이면.... 아래경로 문제인듯한데...
$g4_path = "ilbung"; // common.php 의 상대 경로
Warning: main(ilbung/common.php) [function.main]: failed to create stream: No such file or directory in /home/hosting_users/ilbung/www/ilbung/_common.php on line 3
세번째라인이면.... 아래경로 문제인듯한데...
$g4_path = "ilbung"; // common.php 의 상대 경로
지금 그누보드는 ilbung라는 폴더 안에 있구요
_common.php
<?
$g4_path = "ilbung"; // common.php 의 상대 경로
include_once("$g4_path/common.php");
?>
===>
_common.php
<?
$g4_path = "그누보드 설치 디렉터리"
include_once("$g4_path/common.php");
?>
=== 추측에 다음인 듯합니다.
_common.php
<?
$g4_path = ".";
include_once("$g4_path/common.php");
?>
_common.php
<?
$g4_path = "ilbung"; // common.php 의 상대 경로
include_once("$g4_path/common.php");
?>
===>
_common.php
<?
$g4_path = "그누보드 설치 디렉터리"
include_once("$g4_path/common.php");
?>
=== 추측에 다음인 듯합니다.
_common.php
<?
$g4_path = ".";
include_once("$g4_path/common.php");
?>