diff --git a/bbs/register_email.php b/bbs/register_email.php index db4199270..1a47e9aa5 100644 --- a/bbs/register_email.php +++ b/bbs/register_email.php @@ -29,7 +29,7 @@ include_once('./_head.php'); -
+
diff --git a/common.php b/common.php index 7af3a8604..82847dfc6 100644 --- a/common.php +++ b/common.php @@ -144,7 +144,7 @@ if (file_exists($dbconfig_file)) { @ini_set("session.use_trans_sid", 0); // PHPSESSID를 자동으로 넘기지 않음 @ini_set("url_rewriter.tags",""); // 링크에 PHPSESSID가 따라다니는것을 무력화함 (해뜰녘님께서 알려주셨습니다.) -session_save_path(G5_DATA_PATH.'/session'); +session_save_path(G5_SESSION_PATH); if (isset($SESSION_CACHE_LIMITER)) @session_cache_limiter($SESSION_CACHE_LIMITER); diff --git a/config.php b/config.php index 8d37b4ca9..d4ad12e70 100644 --- a/config.php +++ b/config.php @@ -56,6 +56,7 @@ define('G5_KCPCERT_DIR', 'kcpcert'); define('G5_SNS_DIR', 'sns'); define('G5_SYNDI_DIR', 'syndi'); define('G5_PHPMAILER_DIR', 'PHPMailer_v2.0.4'); +define('G5_SESSION_DIR', 'session'); // URL 은 브라우저상에서의 경로 (도메인으로 부터의) if (G5_DOMAIN) { @@ -98,6 +99,7 @@ define('G5_LIB_PATH', G5_PATH.'/'.G5_LIB_DIR); define('G5_PLUGIN_PATH', G5_PATH.'/'.G5_PLUGIN_DIR); define('G5_SKIN_PATH', G5_PATH.'/'.G5_SKIN_DIR); define('G5_MOBILE_PATH', G5_PATH.'/'.G5_MOBILE_DIR); +define('G5_SESSION_PATH', G5_DATA_PATH.'/'.G5_SESSION_DIR); define('G5_CAPTCHA_PATH', G5_PLUGIN_PATH.'/'.G5_CAPTCHA_DIR); define('G5_EDITOR_PATH', G5_PLUGIN_PATH.'/'.G5_EDITOR_DIR); define('G5_OKNAME_PATH', G5_PLUGIN_PATH.'/'.G5_OKNAME_DIR); diff --git a/css/admin.css b/css/admin.css index 0b91aebd7..7136969c3 100644 --- a/css/admin.css +++ b/css/admin.css @@ -770,12 +770,12 @@ strong.sodr_nonpay {display:block;padding:5px 0;text-align:right} .sv_on {display:block !important;position:absolute;top:10px;left:20px;width:auto;height:auto} .sv_nojs .sv {display:block} -/* pagination */ -.pg_wrap {clear:both;margin:0 0 20px;padding-top:20px;text-align:center} -.pg {display:inline-block;border:1px solid #ddd;letter-spacing:-4px} -.pg a:focus, .pg a:hover, .pg a:active {text-decoration:none} -.pg_page, .pg_current {display:inline-block;padding:0 12px;height:30px;color:#000;letter-spacing:0;line-height:2.6em;vertical-align:middle} -.pg_page {background:#f9f9f9;text-decoration:none} -.pg_start, .pg_prev {border-right:1px solid #ddd} -.pg_end, .pg_next {border-left:1px solid #ddd} -.pg_current {background:#444;color:#fff;font-weight:bold} +/* 페이징 */ +.pg_wrap {clear:both;margin:0 0 20px;padding:20px 0 0;text-align:center} +.pg {} +.pg_page, .pg_current {display:inline-block;padding:0 8px;height:25px;color:#000;letter-spacing:0;line-height:2.2em;vertical-align:middle} +.pg a:focus, .pg a:hover {text-decoration:none} +.pg_page {background:#e4eaec;text-decoration:none} +.pg_start, .pg_prev {/* 이전 */} +.pg_end, .pg_next {/* 다음 */} +.pg_current {display:inline-block;margin:0 4px 0 0;background:#333;color:#fff;font-weight:normal} diff --git a/plugin/kcpcert/bin/ct_cli b/plugin/kcpcert/bin/ct_cli old mode 100644 new mode 100755 diff --git a/plugin/kcpcert/kcpcert_result.php b/plugin/kcpcert/kcpcert_result.php index d90b3d701..fb642a557 100644 --- a/plugin/kcpcert/kcpcert_result.php +++ b/plugin/kcpcert/kcpcert_result.php @@ -102,7 +102,7 @@ if( $cert_enc_use == "Y" ) { // 검증 실패시 처리 영역 - echo "dn_hash 변조 위험있음"; + echo "dn_hash 변조 위험있음 (".G5_KCPCERT_PATH."/bin/ct_cli 파일에 실행권한이 있는지 확인하세요.)"; exit; // 오류 처리 ( dn_hash 변조 위험있음) }