version.php 분리로 인해 ['path']가 선언되지 않아 설치가 되지 않던 오류 수정
This commit is contained in:
@ -1,4 +1,5 @@
|
|||||||
<?php
|
<?php
|
||||||
|
$g5_path['path'] = '..';
|
||||||
include_once ('../config.php');
|
include_once ('../config.php');
|
||||||
include_once('../lib/json.lib.php');
|
include_once('../lib/json.lib.php');
|
||||||
include_once('../lib/common.lib.php'); // 공통 라이브러리
|
include_once('../lib/common.lib.php'); // 공통 라이브러리
|
||||||
|
|||||||
@ -1,6 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
@header('Content-Type: text/html; charset=utf-8');
|
@header('Content-Type: text/html; charset=utf-8');
|
||||||
@header('X-Robots-Tag: noindex');
|
@header('X-Robots-Tag: noindex');
|
||||||
|
$g5_path['path'] = '..';
|
||||||
include_once ('../config.php');
|
include_once ('../config.php');
|
||||||
$title = G5_VERSION." 라이센스 확인 1/3";
|
$title = G5_VERSION." 라이센스 확인 1/3";
|
||||||
include_once ('./install.inc.php');
|
include_once ('./install.inc.php');
|
||||||
|
|||||||
@ -8,6 +8,7 @@ header('Pragma: no-cache'); // HTTP/1.0
|
|||||||
@header('Content-Type: text/html; charset=utf-8');
|
@header('Content-Type: text/html; charset=utf-8');
|
||||||
@header('X-Robots-Tag: noindex');
|
@header('X-Robots-Tag: noindex');
|
||||||
|
|
||||||
|
$g5_path['path'] = '..';
|
||||||
include_once ('../config.php');
|
include_once ('../config.php');
|
||||||
$title = G5_VERSION." 초기환경설정 2/3";
|
$title = G5_VERSION." 초기환경설정 2/3";
|
||||||
include_once ('./install.inc.php');
|
include_once ('./install.inc.php');
|
||||||
|
|||||||
@ -9,6 +9,7 @@ header('Pragma: no-cache'); // HTTP/1.0
|
|||||||
@header('Content-Type: text/html; charset=utf-8');
|
@header('Content-Type: text/html; charset=utf-8');
|
||||||
@header('X-Robots-Tag: noindex');
|
@header('X-Robots-Tag: noindex');
|
||||||
|
|
||||||
|
$g5_path['path'] = '..';
|
||||||
include_once ('../config.php');
|
include_once ('../config.php');
|
||||||
include_once ('../lib/common.lib.php');
|
include_once ('../lib/common.lib.php');
|
||||||
include_once('./install.function.php'); // 인스톨 과정 함수 모음
|
include_once('./install.function.php'); // 인스톨 과정 함수 모음
|
||||||
|
|||||||
Reference in New Issue
Block a user