diff --git a/config.php b/config.php index 3d3650376..e9cc9afb1 100644 --- a/config.php +++ b/config.php @@ -5,7 +5,7 @@ ********************/ define('G5_VERSION', '그누보드5'); -define('G5_GNUBOARD_VER', '5.3.1.6'); +define('G5_GNUBOARD_VER', '5.3.1.7'); define('G5_YOUNGCART_VER', '5.3.1.6'); // 이 상수가 정의되지 않으면 각각의 개별 페이지는 별도로 실행될 수 없음 diff --git a/install/ajax.install.check.php b/install/ajax.install.check.php new file mode 100644 index 000000000..381fd380a --- /dev/null +++ b/install/ajax.install.check.php @@ -0,0 +1,53 @@ + \ No newline at end of file diff --git a/install/install.function.php b/install/install.function.php new file mode 100644 index 000000000..4739e9bc4 --- /dev/null +++ b/install/install.function.php @@ -0,0 +1,40 @@ +$error_msg, 'success'=>$success_msg, 'exists'=>$exists_msg)); + } +} +?> \ No newline at end of file diff --git a/install/install_config.php b/install/install_config.php index 2f2639bc5..f0150b6d3 100644 --- a/install/install_config.php +++ b/install/install_config.php @@ -17,6 +17,9 @@ if (!isset($_POST['agree']) || $_POST['agree'] != '동의함') { echo "
".PHP_EOL; exit; } + +$tmp_str = isset($_SERVER['SERVER_SOFTWARE']) ? $_SERVER['SERVER_SOFTWARE'] : ''; +$ajax_token = md5($tmp_str.$_SERVER['REMOTE_ADDR'].$_SERVER['DOCUMENT_ROOT']); ?> @@ -85,6 +88,7 @@ if (!isset($_POST['agree']) || $_POST['agree'] != '동의함') {