diff --git a/adm/admin.menu100.php b/adm/admin.menu100.php index d65cb8fbf..0c8edbb8c 100644 --- a/adm/admin.menu100.php +++ b/adm/admin.menu100.php @@ -9,6 +9,7 @@ $menu['menu100'] = array ( array('100900', '캐쉬파일 일괄삭제',G4_ADMIN_URL.'/cache_file_delete.php', 'cf_cache', 1), array('100910', '캡챠파일 일괄삭제',G4_ADMIN_URL.'/gcaptcha_file_delete.php', 'cf_captcha', 1), array('100920', '썸네일파일 일괄삭제',G4_ADMIN_URL.'/thumbnail_file_delete.php', 'cf_thumbnail', 1), + array('100930', '네이버 신디케이션 핑',G4_SYNDI_URL.'/ping.php', 'cf_syndi_ping', 1), array('100500', 'phpinfo()', G4_ADMIN_URL.'/phpinfo.php', 'cf_phpinfo'), //array('100600', '업그레이드', G4_ADMIN_URL.'/upgrade.php', 'cf_upgrade'), //array('100700', '복구/최적화', G4_ADMIN_URL.'/repair.php', 'cf_repair'), diff --git a/css/admin.css b/css/admin.css index a678a4d8e..d2458c1d9 100644 --- a/css/admin.css +++ b/css/admin.css @@ -419,7 +419,7 @@ fieldset button {padding:0 15px;height:23px;border:0;background:#617d46;color:#f .sort_odr {float:left;margin:0 0 10px;padding-left:1px;list-style:none;zoom:1} .sort_odr:after {display:block;visibility:hidden;clear:both;content:""} .sort_odr li {float:left;margin-bottom:-1px} -.sort_odr a {display:block;position:relative;margin-left:-1px;padding:8px 0 6px;width:70px;border:1px solid #e9e9e9;background:#f5f6fa;color:#000;text-align:center;letter-spacing:-0.1em;line-height:1.2em;cursor:pointer} +.sort_odr a {display:inline-block;position:relative;margin-left:-1px;padding:8px 0 6px;width:70px;border:1px solid #e9e9e9;background:#f5f6fa;color:#000;text-align:center;letter-spacing:-0.1em;line-height:1.2em;cursor:pointer} .sort_odr a:focus, .sort_odr a:hover, .sort_odr a:active {text-decoration:none} .sort_with {float:right} @@ -435,6 +435,7 @@ table {clear:both;margin-bottom:10px;width:100%;border-collapse:collapse;border- caption {padding:10px 0 15px;font-weight:bold;text-align:left} thead th {padding:12px 0 8px;border-bottom:1px solid #666;background:#565e60;color:#fff} thead th input {vertical-align:top} /* middle 로 하면 게시판 읽기에서 목록 사용시 체크박스 라인 깨짐 */ +thead a {color:#fff} tfoot th {border-top:1px solid #666;border-bottom:1px solid #666;background:#484848;color:#fff} tfoot td {border-color:#666;background:#484848;color:#fff;font-weight:bold;text-align:center} td {padding:8px 5px 6px;border-top:1px solid #e9e9e9;border-bottom:1px solid #e9e9e9;line-height:1.5em;word-break:break-all} diff --git a/js/shop.js b/js/shop.js index caaf177a3..b16ebf6da 100644 --- a/js/shop.js +++ b/js/shop.js @@ -3,6 +3,23 @@ var supply_add = false; $(function() { // 선택옵션 + /* 가상서커 ctrl keyup 이베트 대응 */ + $("select[name='it_option[]']").live("keyup", function(e) { + var sel_count = $("select[name='it_option[]']").size(); + var idx = $("select[name='it_option[]']").index($(this)); + var code = e.keyCode; + var val = $(this).val(); + + option_add = false; + if(code == 17 && sel_count == idx + 1) { + if(val == "") + return; + + sel_option_process(true); + } + }); + + /* 키보드 접근 후 옵션 선택 Enter keydown 이벤트 대응 */ $("select[name='it_option[]']").live("keydown", function(e) { var sel_count = $("select[name='it_option[]']").size(); var idx = $("select[name='it_option[]']").index($(this)); @@ -82,6 +99,22 @@ $(function() { }); // 추가옵션 + /* 가상서커 ctrl keyup 이베트 대응 */ + $("select[name='it_supply[]']").live("keyup", function(e) { + var $el = $(this); + var code = e.keyCode; + var val = $(this).val(); + + supply_add = false; + if(code == 17) { + if(val == "") + return; + + sel_supply_process($el, true); + } + }); + + /* 키보드 접근 후 옵션 선택 Enter keydown 이벤트 대응 */ $("select[name='it_supply[]']").live("keydown", function(e) { var $el = $(this); var code = e.keyCode; diff --git a/plugin/syndi/ping.php b/plugin/syndi/ping.php new file mode 100644 index 000000000..5c2169d9a --- /dev/null +++ b/plugin/syndi/ping.php @@ -0,0 +1,61 @@ += 0) +{ + date_default_timezone_set(@date_default_timezone_get()); +} + +error_reporting(E_ALL & ~E_NOTICE & ~E_STRICT); + +$syndi_path = dirname(__FILE__); + +include $syndi_path . '/config/site.config.php'; + +$sql = " select bo_table from " . $g4['board_table'] . " b, ". $g4['group_table'] . " g where b.bo_read_level=1 and b.bo_list_level=1 and g.gr_use_access=0 and g.gr_id = b.gr_id order by b.gr_id, b.bo_table limit 1 "; +$channel = sql_fetch($sql); + +$sql = " select wr_id from {$g4['write_prefix']}{$channel['bo_table']} where wr_is_comment = 0 order by wr_num, wr_reply desc limit 1 "; +$article = sql_fetch($sql); +?> + + + + + +네이버 신디케이션 핑 + + + + +

네이버 신디케이션 핑 (Naver Syndication PING)

+ + + + + diff --git a/shop/orderform.php b/shop/orderform.php index 4b7908780..cee60a6b8 100644 --- a/shop/orderform.php +++ b/shop/orderform.php @@ -48,12 +48,7 @@ if (file_exists('./settle_'.$default['de_card_pg'].'.inc.php')) { -

+

결제안내 결제를 하시려면 상단의 노란색 표시줄을 클릭하시거나, [수동설치]를 눌러 Payplus Plug-in을 설치하시기 바랍니다.
[수동설치]를 눌러 설치하신 경우 새로고침(F5)키를 눌러 진행하시기 바랍니다. @@ -945,6 +935,13 @@ function get_intall_file() ?> + +

+ 결제를 계속 하시려면 상단의 노란색 표시줄을 클릭하시거나 [수동설치]를 눌러 다운로드 된 Payplus Plug-in을 설치하시기 바랍니다.
+ [수동설치]를 눌러 설치하신 경우 새로고침(F5)키를 눌러 진행하시기 바랍니다.
+ 새로고침(F5) 한후에도 계속 설치파일이 다운로드 되거나 결제가 되지 않으면 브라우저를 새로 열어서 주문해 주시기 바랍니다.
+ 브라우저가 익스플로러가 아닌 경우 Payplus Plug-in 설치에 문제가 있을수 있음을 알려 드립니다. +

\ No newline at end of file diff --git a/skin/board/itemuse/_common.php b/skin/board/itemuse/_common.php deleted file mode 100644 index 15870801c..000000000 --- a/skin/board/itemuse/_common.php +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/skin/board/itemuse/_common.skin.php b/skin/board/itemuse/_common.skin.php deleted file mode 100644 index 90d555c76..000000000 --- a/skin/board/itemuse/_common.skin.php +++ /dev/null @@ -1,12 +0,0 @@ - \ No newline at end of file diff --git a/skin/board/itemuse/img/icon_file.gif b/skin/board/itemuse/img/icon_file.gif deleted file mode 100644 index cca47f566..000000000 Binary files a/skin/board/itemuse/img/icon_file.gif and /dev/null differ diff --git a/skin/board/itemuse/img/icon_hot.gif b/skin/board/itemuse/img/icon_hot.gif deleted file mode 100644 index c95b839ae..000000000 Binary files a/skin/board/itemuse/img/icon_hot.gif and /dev/null differ diff --git a/skin/board/itemuse/img/icon_img.gif b/skin/board/itemuse/img/icon_img.gif deleted file mode 100644 index fefa10d4a..000000000 Binary files a/skin/board/itemuse/img/icon_img.gif and /dev/null differ diff --git a/skin/board/itemuse/img/icon_link.gif b/skin/board/itemuse/img/icon_link.gif deleted file mode 100644 index 0f3cb1ac6..000000000 Binary files a/skin/board/itemuse/img/icon_link.gif and /dev/null differ diff --git a/skin/board/itemuse/img/icon_mobile.gif b/skin/board/itemuse/img/icon_mobile.gif deleted file mode 100644 index ad934d23c..000000000 Binary files a/skin/board/itemuse/img/icon_mobile.gif and /dev/null differ diff --git a/skin/board/itemuse/img/icon_movie.gif b/skin/board/itemuse/img/icon_movie.gif deleted file mode 100644 index cb958f83f..000000000 Binary files a/skin/board/itemuse/img/icon_movie.gif and /dev/null differ diff --git a/skin/board/itemuse/img/icon_new.gif b/skin/board/itemuse/img/icon_new.gif deleted file mode 100644 index 45aa6d7ed..000000000 Binary files a/skin/board/itemuse/img/icon_new.gif and /dev/null differ diff --git a/skin/board/itemuse/img/icon_reply.gif b/skin/board/itemuse/img/icon_reply.gif deleted file mode 100644 index 91c135977..000000000 Binary files a/skin/board/itemuse/img/icon_reply.gif and /dev/null differ diff --git a/skin/board/itemuse/img/icon_secret.gif b/skin/board/itemuse/img/icon_secret.gif deleted file mode 100644 index c04899f14..000000000 Binary files a/skin/board/itemuse/img/icon_secret.gif and /dev/null differ diff --git a/skin/board/itemuse/img/icon_sound.gif b/skin/board/itemuse/img/icon_sound.gif deleted file mode 100644 index c5188318a..000000000 Binary files a/skin/board/itemuse/img/icon_sound.gif and /dev/null differ diff --git a/skin/board/itemuse/list.skin.php b/skin/board/itemuse/list.skin.php deleted file mode 100644 index 8ae6a06a3..000000000 --- a/skin/board/itemuse/list.skin.php +++ /dev/null @@ -1,243 +0,0 @@ - - - - -

- - -
- - -
- -
- - -
-
- Total - 페이지 -
- - - - -
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - "> - - - - - - - - - - - - - '; } ?> - -
목록
번호 - - - 제목글쓴이날짜조회추천비추천
- 공지'; - else if ($wr_id == $list[$i]['wr_id']) - echo "열람중"; - else - echo $list[$i]['num']; - ?> - - - - - - - - - - - 댓글 - - - '; } - - if (isset($list[$i]['icon_new'])) echo $list[$i]['icon_new']; - if (isset($list[$i]['icon_hot'])) echo $list[$i]['icon_hot']; - if (isset($list[$i]['icon_file'])) echo $list[$i]['icon_file']; - if (isset($list[$i]['icon_link'])) echo $list[$i]['icon_link']; - if (isset($list[$i]['icon_secret'])) echo $list[$i]['icon_secret']; - - ?> -
게시물이 없습니다.
- - -
- - - -
- -
-
- - - - - - - - -
- 게시물 검색 - -
- - - - - - - - -
-
- - - - - diff --git a/skin/board/itemuse/style.css b/skin/board/itemuse/style.css deleted file mode 100644 index 22cf7fb3f..000000000 --- a/skin/board/itemuse/style.css +++ /dev/null @@ -1,139 +0,0 @@ -/* 게시판 쓰기 */ - -/* 게시판 목록 */ -#bo_list_title {margin-bottom:20px;font-size:1.2em;letter-spacing:-0.1em} - -#bo_cate h2 {position:absolute;;font-size:0;line-height:0;overflow:hidden} -#bo_cate ul {margin-bottom:10px;padding-left:1px;width:728px;zoom:1} -#bo_cate ul:after {display:block;visibility:hidden;clear:both;content:""} -#bo_cate li {float:left;margin-bottom:-1px} -#bo_cate a {display:block;position:relative;margin-left:-1px;padding:6px 0 5px;width:90px;border:1px solid #ddd;background:#f7f7f7;color:#888;text-align:center;letter-spacing:-0.1em;line-height:1.2em;cursor:pointer} -#bo_cate a:focus, #bo_cate a:hover, #bo_cate a:active {text-decoration:none} -#bo_cate #bo_cate_on {z-index:2;border:1px solid #565e60;background:#fff;color:#565e60;font-weight:bold} - -.td_subject img {margin-left:3px} - -/* 게시판 목록 공통 */ -.bo_fx {margin-bottom:5px;zoom:1} -.bo_fx:after {display:block;visibility:hidden;clear:both;content:""} -.bo_fx ul {margin:0;padding:0;list-style:none} -#bo_list_total {float:left;padding-top:5px} -.btn_bo_user {float:right;margin:0;padding:0;list-style:none} -.btn_bo_user li {float:left;margin-left:5px} -.btn_bo_adm {float:left} -.btn_bo_adm li {float:left;margin-right:5px} -.btn_bo_adm input {padding:0 10px;height:25px;border:1px solid #e8180c !important;background:#e8180c;color:#fff;text-decoration:none;vertical-align:middle;cursor:pointer} -.bo_notice td {background:#f5f6fa} -.bo_notice td a {font-weight:bold} -.td_num strong {color:#000} -.bo_cate_link {display:inline-block;margin:0 3px 0 0;padding:0 6px 0 0;border-right:1px solid #e7f1ed;color:#999 !important;font-weight:bold;text-decoration:none} /* 글제목줄 분류스타일 */ -.bo_current {color:#e8180c} -.cnt_cmt {font-weight:bold} - -#bo_sch {margin-bottom:10px;padding-top:5px;text-align:center} -#bo_sch legend {position:absolute;margin:0;padding:0;font-size:0;line-height:0;text-indent:-9999em;overflow:hidden} - -/* 게시판 읽기 */ -#bo_v {margin-bottom:20px;padding-bottom:20px} - -#bo_v_table {position:absolute;top:0;right:15px;margin:0;padding:0 5px;height:25px;background:#565e60;color:#fff;font-weight:bold;line-height:2.2em} - -#bo_v_title {padding:10px 0;font-size:1.2em} - -#bo_v_info {padding:0 0 10px;border-bottom:1px solid #ddd} -#bo_v_info h2 {margin:0;padding:0;height:0;overflow:hidden} -#bo_v_info strong {display:inline-block;margin:0 15px 0 5px;font-weight:normal} -#bo_v_info .sv_member, -#bo_v_info .sv_guest, -#bo_v_info .member, -#bo_v_info .guest {font-weight:bold} - -#bo_v_file {} -#bo_v_file h2 {margin:0;padding:0;height:0;overflow:hidden} -#bo_v_file ul {margin:0;padding:0;list-style:none} -#bo_v_file li {padding:0 10px;border-bottom:1px solid #eee;background:#f5f6fa} -#bo_v_file a {display:inline-block;padding:8px 0 7px;width:100%;color:#000;word-wrap:break-word} -#bo_v_file a:focus, #bo_v_file a:hover, #bo_v_file a:active {text-decoration:none} -#bo_v_file img {float:left;margin:0 10px 0 0} -.bo_v_file_cnt {display:inline-block;margin:0 0 3px 22px} - -#bo_v_link {} -#bo_v_link h2 {margin:0;padding:0;height:0;overflow:hidden} -#bo_v_link ul {margin:0;padding:0;list-style:none} -#bo_v_link li {padding:0 10px;border-bottom:1px solid #eee;background:#f5f6fa} -#bo_v_link a {display:inline-block;padding:8px 0 7px;width:100%;color:#000;word-wrap:break-word} -#bo_v_link a:focus, #bo_v_link a:hover, #bo_v_link a:active {text-decoration:none} -.bo_v_link_cnt {display:inline-block;margin:0 0 3px 22px} - -#bo_v_top {margin:0 0 10px;padding:10px 0;zoom:1} -#bo_v_top:after {display:block;visibility:hidden;clear:both;content:""} -#bo_v_top h2 {margin:0;padding:0;height:0;overflow:hidden} -#bo_v_top ul {margin:0;padding:0;list-style:none} - -#bo_v_bot {zoom:1} -#bo_v_bot:after {display:block;visibility:hidden;clear:both;content:""} -#bo_v_bot h2 {margin:0;padding:0;height:0;overflow:hidden} -#bo_v_bot ul {margin:0;padding:0;list-style:none} - -.bo_v_nb {float:left} -.bo_v_nb li {float:left;margin-right:5px} -.bo_v_com {float:right} -.bo_v_com li {float:left;margin-left:5px} - -#bo_v_atc {min-height:200px;height:auto !important;height:200px} -#bo_v_atc_title {position:absolute;font-size:0;line-height:0;overflow:hidden} - -#bo_v_img {margin:0 0 10px;width:100%;overflow:hidden:zoom:1} -#bo_v_img:after {display:block;visibility:hidden;clear:both;content:""} -#bo_v_img img {margin-bottom:20px;max-width:100%;height:auto} - -#bo_v_con {margin-bottom:30px;width:100%;line-height:1.7em;word-break:break-all;overflow:hidden} -#bo_v_con a {color:#000;text-decoration:underline} -#bo_v_con img {max-width:100%;height:auto} - -#bo_v_act {margin-bottom:30px;text-align:center} -#bo_v_act a {margin-right:5px;vertical-align:top} -#bo_v_act span {display:inline-block;margin-right:5px;padding:0 10px;height:23px;border:1px solid #ccc !important;background:#fafafa !important;color:#000 !important;text-decoration:none !important;line-height:2.15em;vertical-align:top} -#bo_v_act strong {color:#ff3061} -#bo_v_act_good, -#bo_v_act_nogood {position:absolute;font-size:0;line-height:0;overflow:hidden} - -#bo_v_sns {margin:0 0 20px;padding:0;list-style:none;zoom:1} -#bo_v_sns:after {display:block;visibility:hidden;clear:both;content:""} -#bo_v_sns li {float:left;margin:0 5px 0 0} - -#bo_v form {padding-top:20px} - -/* 게시판 댓글 */ -#bo_vc {padding:20px 20px 10px;border-top:1px solid #cfded8;border-bottom:1px solid #cfded8;background:#f5f6fa} -#bo_vc h2 {margin-bottom:10px} -#bo_vc article {padding:0 0 10px;border-top:1px dotted #ccc} -#bo_vc header {position:relative;padding:15px 0 5px} -#bo_vc header .icon_reply {position:absolute;top:15px;left:-20px} -#bo_vc .sv_wrap {margin-right:15px} -#bo_vc .member, #bo_vc .guest, #bo_vc .sv_member, #bo_vc .sv_guest {font-weight:bold} -.bo_vc_hdinfo {display:inline-block;margin:0 15px 0 5px} -#bo_vc h1 {position:absolute;font-size:0;line-height:0;overflow:hidden} -#bo_vc a {color:#000;text-decoration:none} -#bo_vc p {padding:0 0 5px;line-height:1.8em} -#bo_vc p a {text-decoration:underline} -#bo_vc_empty {margin:0;padding:20px !important;text-align:center} -#bo_vc fieldset {margin:0 0 10px;padding:0} -#bo_vc #bo_vc_winfo {float:left} -#bo_vc footer {zoom:1} -#bo_vc footer:after {display:block;visibility:hidden;clear:both;content:""} - -.bo_vc_act {float:right;margin:0;list-style:none;zoom:1} -.bo_vc_act:after {display:block;visibility:hidden;clear:both;content:""} -.bo_vc_act li {float:left;margin-left:5px} - -#bo_vc_w {position:relative;margin:0 0 10px;padding:0 0 20px;border-bottom:1px solid #cfded8} -#bo_vc_w h2 {position:absolute;font-size:0;line-height:0;overflow:hidden} -#bo_vc_w #char_cnt {display:block;margin:0 0 5px} - -#bo_vc_sns {margin:0;padding:0;list-style:none;zoom:1} -#bo_vc_sns:after {display:block;visibility:hidden;clear:both;content:""} -#bo_vc_sns li {float:left;margin:0 20px 0 0} -#bo_vc_sns input {margin:0 0 0 5px} - -#bo_vc form {padding:0} \ No newline at end of file diff --git a/skin/board/itemuse/view.skin.php b/skin/board/itemuse/view.skin.php deleted file mode 100644 index f033e1315..000000000 --- a/skin/board/itemuse/view.skin.php +++ /dev/null @@ -1,324 +0,0 @@ - - - - -
- -
-
-

- -

-
- -
-

페이지 정보

- 작성자 - 작성일 - 조회 - 댓글 -
- - - - -
-

첨부파일

- -
- - - - - - -
- - - - - - - -
- -
-

본문

- - \n"; - - for ($i=0; $i<=count($view['file']); $i++) { - if ($view['file'][$i]['view']) { - //echo $view['file'][$i]['view']; - echo get_view_thumbnail($view['file'][$i]['view']); - } - } - - echo "\n"; - } - ?> - -
- - -

- - -
- 스크랩 - - 추천 - - - - 비추천 - - -
- -
- 추천 - 비추천 -
- -
- - - - - -
- - -
- -
- - - - - - \ No newline at end of file diff --git a/skin/board/itemuse/view_comment.skin.php b/skin/board/itemuse/view_comment.skin.php deleted file mode 100644 index c66d0d934..000000000 --- a/skin/board/itemuse/view_comment.skin.php +++ /dev/null @@ -1,301 +0,0 @@ - - - - - -
-

댓글목록

- \]/i", "", $comment); - ?> - -
style="margin-left:px;border-top-color:#e0e0e0"> -
-

님의 댓글

- - 댓글의 댓글 - - 아이피 - - - 작성일 - - -
- - -

- 비밀글 - -

- - - - - " id="secret_comment_"> - - - - - -
- -

등록된 댓글이 없습니다.

- -
- - - - - - diff --git a/skin/board/itemuse/write.skin.php b/skin/board/itemuse/write.skin.php deleted file mode 100644 index a1eb0c5ac..000000000 --- a/skin/board/itemuse/write.skin.php +++ /dev/null @@ -1,171 +0,0 @@ - - - - -

- -
- - - - - - - - - - - - -'."\n".''; - } - - if ($is_html) { - if ($is_dhtml_editor) { - $option_hidden .= ''; - } else { - $option .= "\n".''."\n".''; - } - } - - if ($is_secret) { - if ($is_admin || $is_secret==1) { - $option .= "\n".''."\n".''; - } else { - $option_hidden .= ''; - } - } - - if ($is_mail) { - $option .= "\n".''."\n".''; - } -} - -echo $option_hidden; -?> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
class="frm_input " maxlength="20">
옵션
자동등록방지 - -
- -
-

- 작성하신 내용을 제출하시려면 글쓰기 버튼을, 작성을 취소하고 목록으로 돌아가시려면 취소 링크를 누르세요. -

- - 취소 -
-
- -