data 디렉토리 경로가 제대로 표시되도록 함
This commit is contained in:
@ -57,9 +57,11 @@ if (file_exists($dbconfig_file)) {
|
||||
if (!is_dir($data_path))
|
||||
{
|
||||
?>
|
||||
<p>루트 디렉토리에 아래로 '.G4_DATA_DIR.' 디렉토리를 생성하여 주십시오.<br />(common.php 파일이 있는곳이 루트 디렉토리 입니다.)<br /><br />$> mkdir '.G4_DATA_DIR.'<br /><br />위 명령 실행후 다시 설치하여 주십시오.</p>
|
||||
<p>루트 디렉토리에 아래로 <?=G4_DATA_DIR?> 디렉토리를 생성하여 주십시오.<br />
|
||||
(common.php 파일이 있는곳이 루트 디렉토리 입니다.)<br /><br />
|
||||
$> mkdir <?=G4_DATA_DIR?><br /><br />
|
||||
위 명령 실행후 브라우저를 새로고침 하십시오.</p>
|
||||
<?
|
||||
exit;
|
||||
}
|
||||
?>
|
||||
|
||||
@ -68,7 +70,9 @@ if (!is_dir($data_path))
|
||||
if (!(is_readable($data_path) && is_writeable($data_path) && is_executable($data_path)))
|
||||
{
|
||||
?>
|
||||
<p>'.G4_DATA_DIR.' 디렉토리의 퍼미션을 707로 변경하여 주십시오.<br /><br />$> chmod 707 '.G4_DATA_DIR.' 또는 chmod uo+rwx '.G4_DATA_DIR.'<br /><br />위 명령 실행후 다시 설치하여 주십시오.</p>
|
||||
<p><?=G4_DATA_DIR?> 디렉토리의 퍼미션을 707로 변경하여 주십시오.<br /><br />
|
||||
$> chmod 707 <?=G4_DATA_DIR?> 또는 chmod uo+rwx <?=G4_DATA_DIR?><br /><br />
|
||||
위 명령 실행후 브라우저를 새로고침 하십시오.</p>
|
||||
<?
|
||||
exit;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user