경로 수정 및 불필요한 파일 삭제: CSS 파일 경로를 절대 경로로 변경하고, 사용되지 않는 install.css 및 이미지 파일을 삭제함. 또한, 여러 파일에서 include 경로를 수정하여 일관성을 유지함.
This commit is contained in:
@ -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('install_common.php');
|
||||
include_once ('../config.php');
|
||||
include_once($GLOBALS['baseDir'] . '/g5/install/install_common.php');
|
||||
include_once ($GLOBALS['baseDir'] . '/g5/config.php');
|
||||
$title = G5_VERSION." 라이센스 확인 1/3";
|
||||
include_once ('./install.inc.php');
|
||||
include_once ($GLOBALS['baseDir'] . '/g5/install/install.inc.php');
|
||||
?>
|
||||
|
||||
<?php
|
||||
if ($exists_data_dir && $write_data_dir) {
|
||||
// 필수 모듈 체크
|
||||
require_once('./library.check.php');
|
||||
require_once($GLOBALS['baseDir'] . '/g5/install/library.check.php');
|
||||
?>
|
||||
<form action="./install_config.php" method="post" onsubmit="return frm_submit(this);">
|
||||
<form action="/install/install_config" method="post" onsubmit="return frm_submit(this);">
|
||||
|
||||
<div class="ins_inner">
|
||||
<p>
|
||||
@ -52,4 +52,5 @@ function frm_submit(f)
|
||||
?>
|
||||
|
||||
<?php
|
||||
include_once ('./install.inc2.php');
|
||||
include_once ($GLOBALS['baseDir'] . '/g5/install/install.inc2.php');
|
||||
?>
|
||||
Reference in New Issue
Block a user