Revert "경로 수정 및 불필요한 파일 삭제: CSS 파일 경로를 절대 경로로 변경하고, 사용되지 않는 install.css 및 이미지 파일을 삭제함. 또한, 여러 파일에서 include 경로를 수정하여 일관성을 유지함."
This reverts commit b8da0f0890.
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
<?php
|
||||
define('G5_IS_ADMIN', true);
|
||||
require_once $GLOBALS['baseDir'] . '/g5/common.php';
|
||||
require_once $GLOBALS['baseDir'] . '/g5/admin.lib.php';
|
||||
require_once '../common.php';
|
||||
require_once G5_ADMIN_PATH . '/admin.lib.php';
|
||||
|
||||
if (isset($token)) {
|
||||
$token = @htmlspecialchars(strip_tags($token), ENT_QUOTES);
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
$sub_menu = '100000';
|
||||
require_once $GLOBALS['baseDir'] . '/g5/adm/_common.php';
|
||||
require_once './_common.php';
|
||||
|
||||
@require_once './safe_check.php';
|
||||
|
||||
|
||||
@ -173,7 +173,7 @@ if (file_exists($dbconfig_file)) {
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>오류! <?php echo G5_VERSION ?> 설치하기</title>
|
||||
<link rel="stylesheet" href="/css/install/install.css">
|
||||
<link rel="stylesheet" href="install/install.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
@ -189,7 +189,7 @@ if (file_exists($dbconfig_file)) {
|
||||
</ul>
|
||||
<p>그누보드 설치 후 다시 실행하시기 바랍니다.</p>
|
||||
<div class="inner_btn">
|
||||
<a href="/install/"><?php echo G5_VERSION ?> 설치하기</a>
|
||||
<a href="<?php echo G5_URL; ?>/install/"><?php echo G5_VERSION ?> 설치하기</a>
|
||||
</div>
|
||||
</div>
|
||||
<div id="ins_ft">
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
// 이 상수가 정의되지 않으면 각각의 개별 페이지는 별도로 실행될 수 없음
|
||||
define('_GNUBOARD_', true);
|
||||
|
||||
include_once($GLOBALS['baseDir'] . '/g5/version.php'); // 설정 파일
|
||||
include_once($g5_path['path'].'/version.php'); // 설정 파일
|
||||
|
||||
// 기본 시간대 설정
|
||||
date_default_timezone_set("Asia/Seoul");
|
||||
|
||||
BIN
install/img/pat01.png
Normal file
BIN
install/img/pat01.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 32 KiB |
@ -1,19 +1,19 @@
|
||||
<?php
|
||||
// @header('Content-Type: text/html; charset=utf-8');
|
||||
// @header('X-Robots-Tag: noindex');
|
||||
@header('Content-Type: text/html; charset=utf-8');
|
||||
@header('X-Robots-Tag: noindex');
|
||||
$g5_path['path'] = '..';
|
||||
include_once($GLOBALS['baseDir'] . '/g5/install/install_common.php');
|
||||
include_once ($GLOBALS['baseDir'] . '/g5/config.php');
|
||||
include_once('install_common.php');
|
||||
include_once ('../config.php');
|
||||
$title = G5_VERSION." 라이센스 확인 1/3";
|
||||
include_once ($GLOBALS['baseDir'] . '/g5/install/install.inc.php');
|
||||
include_once ('./install.inc.php');
|
||||
?>
|
||||
|
||||
<?php
|
||||
if ($exists_data_dir && $write_data_dir) {
|
||||
// 필수 모듈 체크
|
||||
require_once($GLOBALS['baseDir'] . '/g5/install/library.check.php');
|
||||
require_once('./library.check.php');
|
||||
?>
|
||||
<form action="/install/install_config" method="post" onsubmit="return frm_submit(this);">
|
||||
<form action="./install_config.php" method="post" onsubmit="return frm_submit(this);">
|
||||
|
||||
<div class="ins_inner">
|
||||
<p>
|
||||
@ -52,5 +52,4 @@ function frm_submit(f)
|
||||
?>
|
||||
|
||||
<?php
|
||||
include_once ($GLOBALS['baseDir'] . '/g5/install/install.inc2.php');
|
||||
?>
|
||||
include_once ('./install.inc2.php');
|
||||
|
||||
39
install/install.css
Normal file
39
install/install.css
Normal file
@ -0,0 +1,39 @@
|
||||
@charset "utf-8";
|
||||
/* SIR 지운아빠 */
|
||||
|
||||
/* 공통 */
|
||||
body {margin:0;padding:0;background:url('img/pat01.png') #edf0f4;font-size:0.75em;font-family:dotum,helvetica}
|
||||
input, img, select, button {font-size:1em;vertical-align:middle}
|
||||
label {vertical-align:middle}
|
||||
|
||||
#ins_bar {margin:0 0 50px;padding:20px 30px;background:#383838;color:#a1a4a7;font-family:tahoma,helvetica;font-size:1.500em;zoom:1}
|
||||
#ins_bar:after {display:block;visibility:hidden;clear:both;content:""}
|
||||
#ins_bar #bar_img {float:left}
|
||||
#ins_bar #bar_txt {float:right}
|
||||
|
||||
h1 {margin:0 0 30px;text-align:center}
|
||||
|
||||
.ins_inner {margin:0 30px 50px;padding:20px 30px;border-right:1px solid #dde4e9;border-bottom:1px solid #dde4e9;background:#fff}
|
||||
.ins_inner ul {margin:20px 0;padding:0 0 0 13px}
|
||||
.ins_inner ol {margin:20px 0;padding:0 0 0 18px}
|
||||
.ins_inner ol li {margin:0 0 5px}
|
||||
.ins_inner p strong {color:red}
|
||||
.ins_inner .inner_btn {margin:30px 0 0;text-align:right}
|
||||
.ins_inner .inner_btn a, .ins_inner .inner_btn input {display:inline-block;padding:10px 20px;background:#ff347d;color:#fff;text-decoration:none}
|
||||
.ins_inner .inner_btn input {border:0;cursor:pointer}
|
||||
|
||||
.ins_frm {margin:0 0 30px;width:100%;border:0;border-collapse:collapse}
|
||||
.ins_frm caption {padding:10px 0;font-weight:bold;text-align:left}
|
||||
.ins_frm th, .ins_frm td {padding:5px 3px;border-top:1px solid #dde4e9;border-bottom:1px solid #dde4e9}
|
||||
.ins_frm th {width:25%;background:#f2f5f9}
|
||||
.ins_frm td span {display:block;margin:5px 0 0;font-size:0.917em;letter-spacing:-0.1em}
|
||||
|
||||
.ins_ta {padding:5px 0;border:1px solid #dde4e9;text-align:center}
|
||||
.ins_ta textarea {border:0;padding:0;width:99%;height:250px;background:transparent}
|
||||
.ins_license {background:#f2f5f9}
|
||||
|
||||
#ins_ft {color:#a1a4a7;font-family:tahoma,helvetica;text-align:center}
|
||||
#ins_ft strong {font-size:1.500em;font-weight:normal}
|
||||
|
||||
/* 라이센스 확인 1/3 */
|
||||
#ins_agree {padding:10px 0 0;text-align:right}
|
||||
@ -4,12 +4,12 @@ $data_path = '../'.G5_DATA_DIR;
|
||||
|
||||
if (! (isset($title) && $title)) $title = G5_VERSION." 설치";
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<!doctype html>
|
||||
<html lang="ko">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title><?php echo $title; ?></title>
|
||||
<link rel="stylesheet" href="/css/install/install.css">
|
||||
<link rel="stylesheet" href="install.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
@ -4,7 +4,4 @@
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
<?php
|
||||
exit;
|
||||
?>
|
||||
</html>
|
||||
Reference in New Issue
Block a user