그누보드 [G4] 달력스킨 오류 A to Z
페이지 정보
첨부파일
-
pop_schedule.php (1.2K)
21회 다운로드 | DATE : 2008-05-26 18:54:52
본문
### 오류 1 ###
스케쥴 적용후 달력 사이에
SELECT * FROM g4_write_KBF WHERE left(wr_link1,6) <= '200706' and left(wr_link2,6) >= '200706' ORDER BY wr_id ASC
1146 : Table 'silfnia.g4_write_KBF' doesn't exist
error file : /index.php
이런 오류 메세지가 보여지는경우 아래의 경우를 확인해보세요
< 확인1 > 최근게시물의 함수를 잘못사용한 경우
(X) <?=latest("calendar","schedule"); ?>
(O) <?=latest_schedule("calendar","schedule"); ?>
< 확인2 > schedule.lib.php 의 호출 경로가 누락된 경우
<?
include_once '_common.php'; // 그누보드 공통파일
include_once("$g4[path]/lib/schedule.lib.php"); // 달력최근게시물 파일
?>
달력최신게시물 스킨을 사용하고자 하는 HTLM의 최상단에 위의 경로가 정상 삽입 되었는지
### 그누보드 / lib / schedule.lib.php ###
<?
if (!defined('_GNUBOARD_')) exit;
//======일정관리 메인추출=========
function latest_schedule($skin_dir='', $bo_table)
{
global $config;
global $g4;
global $year, $month;
// 스킨디렉토리값이 넘어왔다면
if ($skin_dir) {
$latest_skin_path = "./$g4[path]/skin/latest/$skin_dir";
}
$write_table = $g4[write_prefix] . $bo_table;
ob_start();
include "$latest_skin_path/latest.skin.php";
$content = ob_get_contents();
ob_end_clean();
return $content;
}
?>
### 오류 2 ###
팝업 창은 열리는데 내용이 보이질 않으시는 경우 아래와 같이 pop_schedule.php를 편집기로 열어서 12번째 줄 쯤....
월과 일을 01 ~ 09로 만들어 주는 부분을 주석 처리 하세요
// 0~9 월까지를 01 ~ 09 로 만들어 준다.
/*
if((int)$day <= 9){
$day = "0".$day;
}
if((int)$month <= 9){
$month = "0".$month;
}
*/
스케쥴 적용후 달력 사이에
SELECT * FROM g4_write_KBF WHERE left(wr_link1,6) <= '200706' and left(wr_link2,6) >= '200706' ORDER BY wr_id ASC
1146 : Table 'silfnia.g4_write_KBF' doesn't exist
error file : /index.php
이런 오류 메세지가 보여지는경우 아래의 경우를 확인해보세요
< 확인1 > 최근게시물의 함수를 잘못사용한 경우
(X) <?=latest("calendar","schedule"); ?>
(O) <?=latest_schedule("calendar","schedule"); ?>
< 확인2 > schedule.lib.php 의 호출 경로가 누락된 경우
<?
include_once '_common.php'; // 그누보드 공통파일
include_once("$g4[path]/lib/schedule.lib.php"); // 달력최근게시물 파일
?>
달력최신게시물 스킨을 사용하고자 하는 HTLM의 최상단에 위의 경로가 정상 삽입 되었는지
### 그누보드 / lib / schedule.lib.php ###
<?
if (!defined('_GNUBOARD_')) exit;
//======일정관리 메인추출=========
function latest_schedule($skin_dir='', $bo_table)
{
global $config;
global $g4;
global $year, $month;
// 스킨디렉토리값이 넘어왔다면
if ($skin_dir) {
$latest_skin_path = "./$g4[path]/skin/latest/$skin_dir";
}
$write_table = $g4[write_prefix] . $bo_table;
ob_start();
include "$latest_skin_path/latest.skin.php";
$content = ob_get_contents();
ob_end_clean();
return $content;
}
?>
### 오류 2 ###
팝업 창은 열리는데 내용이 보이질 않으시는 경우 아래와 같이 pop_schedule.php를 편집기로 열어서 12번째 줄 쯤....
월과 일을 01 ~ 09로 만들어 주는 부분을 주석 처리 하세요
// 0~9 월까지를 01 ~ 09 로 만들어 준다.
/*
if((int)$day <= 9){
$day = "0".$day;
}
if((int)$month <= 9){
$month = "0".$month;
}
*/
댓글목록
등록된 댓글이 없습니다.