Skip to content

Commit

Permalink
refs #1828 : modify - change user directory when setup. (WIP)
Browse files Browse the repository at this point in the history
  • Loading branch information
inureyes committed Jul 13, 2015
1 parent 1f10710 commit 3165c54
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.php
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,7 @@ function_exists
echo '<li style="color:red">', _t('원격 설치 디렉토리'), ': ', _f('"%1"에 %2 디렉토리를 생성할 수 없습니다. "%1"의 퍼미션을 %3(으)로 수정해 주십시오.', $root, 'cache', '0777'), '</li>';
}*/

$filename = $root . '/skin/blog/customize';
$filename = $root . '/user/skin/blog/customize';
if (is_dir($filename)) {
if (is_writable($filename))
echo '<li>', _t('스킨 디렉토리'), ': OK</li>';
Expand All @@ -810,8 +810,8 @@ function_exists
echo '<li>', _t('스킨 디렉토리'), ': OK</li>';
} else {
$error = 15;
echo '<li style="color:red">', _t('스킨 디렉토리'), ': ', _f('"%1"에 %2 디렉토리를 생성할 수 없습니다. "%1"의 퍼미션을 %3(으)로 수정해 주십시오.', "$root/skin/blog", 'customize', '0777'), '</li>';
array_push($commands, 'chmod 0777 '."$root/skin/blog");
echo '<li style="color:red">', _t('스킨 디렉토리'), ': ', _f('"%1"에 %2 디렉토리를 생성할 수 없습니다. "%1"의 퍼미션을 %3(으)로 수정해 주십시오.', "$root/user/skin/blog", 'customize', '0777'), '</li>';
array_push($commands, 'chmod 0777 '."$root/user/skin/blog");
}

?>
Expand Down

0 comments on commit 3165c54

Please sign in to comment.