미니달력 (스케줄, 일정관리) 최근게시물 스킨입니다. (2013-01-22 02:16 수정) > 그누4 스킨

그누4 스킨

스킨의 저작권은 해당 스킨 제작자님께 있으며, 그누보드의 저작권과 다를 수 있습니다.
스킨 다운로드시 좋아요와 감사의 코멘트를 남기시면 제작자에게 큰 힘이됩니다. ^^y
그누보드와 관련이 있지만 스킨과 빌더가 아니면 플러그인 게시판에 올려주세요.

미니달력 (스케줄, 일정관리) 최근게시물 스킨입니다. (2013-01-22 02:16 수정) 정보

달력 미니달력 (스케줄, 일정관리) 최근게시물 스킨입니다. (2013-01-22 02:16 수정)

첨부파일

hp_utf_calendar.zip (27.3K) 833회 다운로드 2013-01-22 02:16:31
hp_kr_calendar.zip (26.7K) 38회 다운로드 2013-01-22 02:16:31

본문

열정님의 스킨을 응용하였습니다.
기존의 보드스킨에 그대로 적용하셔도 됩니다.

HTML 표준에 맞도록 코드를 수정하는데 중점을 두었습니다.
투명 GIF이미지를 활용하여 배경색을 변경하셔도 잘 적용되도록 하였습니다.

압축푼후 파일을 아래와 같이 올려주세요

그누보드/pop_schedule.php
그누보드/expend/schedule.lib.php
그누보드/skin/latest/happyjung_calendar/latest.skin.php
그누보드/skin/latest/happyjung_calendar/pop.skin.php
그누보드/skin/latest/happyjung_calendar/img/*.*

보이고자 하는 곳에
<?=latest_schedule("happyjung_calendar","게시판명"); ?>

그누보드 하부가 아닌 곳에서 실행하고자 할때는 아래 두줄을 <head></head> 사이에 넣으세요
그렇지 않으면 일정 누르면 자바스크립트 오류납니다. (이거때매 한참 찾았다는... )
<script language="javascript" src="<?=$g4['path']?>/js/common.js"></script>
<script language="javascript" src="<?=$g4['path']?>/js/ajax.js"></script>


참고1. http://www.sir.co.kr/bbs/tb.php/g4_skin/36426
참고2. http://www.sir.co.kr/bbs/tb.php/g4_skin/34861


-----------------------------------------
2013-01-22 수정  (기존소스 사용중이신분)
-----------------------------------------
수정1. schedule.lib.php 일부 수정

$latest_skin_path = "./$g4[path]/skin/latest/$skin_dir";  를
$latest_skin_path = "$g4[path]/skin/latest/$skin_dir";    로 변경


수정2. pop_schedule.php 일부 수정

$latest_skin_path = "$g4[path]/skin/latest/calendar";  를
$latest_skin_path = "$g4[path]/skin/latest/happyjung_calendar";  로 변경


수정3. pop_schedule.php 일부 수정
팝업 창은 열리는데 내용이 보이질 않으시는 경우 아래와 같이
월과 일을 01 ~ 09로 만들어 주는 부분을 주석 처리 하세요

$day = "0".$day;  를
//$day = "0".$day;  로 변경

$month = "0".$month;  를
//$month = "0".$month;  로 변경



--------------------------------------------
2013-01-22 02:10 이후 새로 다운받으시는분
--------------------------------------------
압축푼후 파일을 아래와 같이 올려주세요

그누보드/pop_schedule.php
*** 그누보드/extend/schedule.lib.php  ...( lib 폴더로 이동 )
그누보드/lib/schedule.lib.php  ( *** 기존에 파일이 있으면 내용 확인후 사용하세요 )
그누보드/skin/latest/hp_utf_calendar/latest.skin.php
그누보드/skin/latest/hp_utf_calendar/pop.skin.php
그누보드/skin/latest/hp_utf_calendar/img/*.*


보이고자 하는 곳에
<?php
include_once("$g4[path]/lib/schedule.lib.php");
echo latest_schedule("hp_kr_calendar","게시판명");  // euc-kr 사용시
//echo latest_schedule("hp_utf_calendar","게시판명");  // utf-8 사용시
?>

그누보드 하부가 아닌 곳에서 실행하고자 할때는 아래 두줄을 <head></head> 사이에 넣으세요
그렇지 않으면 일정 누르면 자바스크립트 오류납니다. (이거때매 한참 찾았다는... )
<script language="javascript" src="<?=$g4['path']?>/js/common.js"></script>
<script language="javascript" src="<?=$g4['path']?>/js/ajax.js"></script>


참고1. http://www.sir.co.kr/bbs/tb.php/g4_skin/36426
참고2. http://www.sir.co.kr/bbs/tb.php/g4_skin/34861
추천
5

댓글 전체

Warning: include_once(./skin/latest/calendar/happyjung_calendar/pop.skin.php) [function.include-once]: failed to open stream: No such file or directory in C:\AutoSet\public_html\gnubbs\pop_schedule.php on line 43

Warning: include_once() [function.include]: Failed opening './skin/latest/calendar/happyjung_calendar/pop.skin.php' for inclusion (include_path='.;C:\php5\pear') in C:\AutoSet\public_html\gnubbs\pop_schedule.php on line 43

이렇게 뜨는건 왜일까요?? 고수님들.. 갈켜주세요..
팝업 창은 열리는데 내용이 보이질 않으시는 경우 아래와 같이
pop_schedule.php를 편집기로 열어서 12번째 줄 쯤....
월과 일을 01 ~ 09로 만들어 주는 부분을 주석 처리 하세요

// 0~9 월까지를 01 ~ 09 로 만들어 준다.
/*
 if((int)$day <= 9){
      $day = "0".$day;
 }
 if((int)$month <= 9){
      $month = "0".$month;
 }
*/
달력스킨의 내용을 못가져옵니다. ㅠ.ㅠ 작은달력 클릭하면 팝업으로 뜨긴 뜨는데, 아무런 내용이 없어요. 다른 달력스킨도 마찬가지구요...;;
팝업 창은 열리는데 내용이 보이질 않으시는 경우 아래와 같이
pop_schedule.php를 편집기로 열어서 12번째 줄 쯤....
월과 일을 01 ~ 09로 만들어 주는 부분을 주석 처리 하세요

// 0~9 월까지를 01 ~ 09 로 만들어 준다.
/*
 if((int)$day <= 9){
      $day = "0".$day;
 }
 if((int)$month <= 9){
      $month = "0".$month;
 }
*/
팝업 창은 열리는데 내용이 보이질 않으시는 경우 아래와 같이
pop_schedule.php를 편집기로 열어서 12번째 줄 쯤....
월과 일을 01 ~ 09로 만들어 주는 부분을 주석 처리 하세요

// 0~9 월까지를 01 ~ 09 로 만들어 준다.
/*
 if((int)$day <= 9){
      $day = "0".$day;
 }
 if((int)$month <= 9){
      $month = "0".$month;
 }
*/
달력 정말 이쁩니다.  홈피올리기전 apm으로 테스트 중인데
팝업창이 열리면 이런 메세지가 나오네요.
Warning: main(./skin/latest/calendar/pop.skin.php): failed to open stream: No such file or directory in c:\apm_setup\htdocs\pop_schedule.php on line 45

Warning: main(): Failed opening './skin/latest/calendar/pop.skin.php' for inclusion (include_path='.') in c:\apm_setup\htdocs\pop_schedule.php on line 45
Warning: main(./skin/latest/calendar/pop.skin.php): failed to open stream: No such file or directory in /home/hosting_users/dotcomu/www/pop_schedule.php on line 46

Warning: main(): Failed opening './skin/latest/calendar/pop.skin.php' for inclusion (include_path='.:/usr/local/lib/php') in /home/hosting_users/dotcomu/www/pop_schedule.php on line 46

팝업창을 띄우면 이렇게 나오네요...
그리고 여분 필드에도
필드제목에다 emmo 라고 쓰고 필드값은 쓰지 않았는데.. 필드제목 쓰라고 계속경고문구 나와요..
어떻게 해야 할까요?
Warning: main(./skin/latest/calendar/pop.skin.php): failed to open stream: No such file or directory in /home/dannyjo/wwwhome/2008/pop_schedule.php on line 45

Warning: main(): Failed opening './skin/latest/calendar/pop.skin.php' for inclusion (include_path='.:/usr/local/php/lib/php') in /home/dannyjo/wwwhome/2008/pop_schedule.php on line 45

이렇게 나오는 걸로 봐서는 pop_schedule.php의 20번째 라인쯤에
$latest_skin_path = "$g4[path]/skin/latest/calendar";를
$latest_skin_path = "$g4[path]/skin/latest/happyjung_calendar";로
바꿔 주셔야 할 것 같네요.

아무튼 감사히 잘 쓰겠습니다.
최근게시물 안에 수정해야할 부분 있음

팝업 창은 열리는데 내용이 보이질 않으시는 경우 아래와 같이
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 where left(wr_link1,6) <= '200902' and left(wr_link2,6) >= '200902' order by wr_id asc

1064 : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where left(wr_link1,6) <= '200902' and left(wr_link2,6) >= '200902' order by wr_' at line 1

error file : /onuri/index.php
테이블명이 제대로 들어오지 않아서 발생하는문제에요. 연동할 게시판 테이블명을 직접 하드코딩하셔서 쓰셔도될꺼같네요. 달력은 보통 하나만 쓰니까.. 근데 전 팝업창이 제대로 안나와서 ㅈㅈ
전체 74 |RSS
그누4 스킨 내용 검색 달력에서

회원로그인

(주)에스아이알소프트 / 대표:홍석명 / (06211) 서울특별시 강남구 역삼동 707-34 한신인터밸리24 서관 1404호 / E-Mail: admin@sir.kr
사업자등록번호: 217-81-36347 / 통신판매업신고번호:2014-서울강남-02098호 / 개인정보보호책임자:김민섭(minsup@sir.kr)
© SIRSOFT