From 3165c54f9acaec16465cdd9ce055b4fea5b2034d Mon Sep 17 00:00:00 2001 From: Jeongkyu Shin Date: Mon, 13 Jul 2015 10:11:10 +0900 Subject: [PATCH] refs #1828 : modify - change user directory when setup. (WIP) --- setup.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.php b/setup.php index 75a3d21f6..4e827e596 100644 --- a/setup.php +++ b/setup.php @@ -796,7 +796,7 @@ function_exists echo '
  • ', _t('원격 설치 디렉토리'), ': ', _f('"%1"에 %2 디렉토리를 생성할 수 없습니다. "%1"의 퍼미션을 %3(으)로 수정해 주십시오.', $root, 'cache', '0777'), '
  • '; }*/ - $filename = $root . '/skin/blog/customize'; + $filename = $root . '/user/skin/blog/customize'; if (is_dir($filename)) { if (is_writable($filename)) echo '
  • ', _t('스킨 디렉토리'), ': OK
  • '; @@ -810,8 +810,8 @@ function_exists echo '
  • ', _t('스킨 디렉토리'), ': OK
  • '; } else { $error = 15; - echo '
  • ', _t('스킨 디렉토리'), ': ', _f('"%1"에 %2 디렉토리를 생성할 수 없습니다. "%1"의 퍼미션을 %3(으)로 수정해 주십시오.', "$root/skin/blog", 'customize', '0777'), '
  • '; - array_push($commands, 'chmod 0777 '."$root/skin/blog"); + echo '
  • ', _t('스킨 디렉토리'), ': ', _f('"%1"에 %2 디렉토리를 생성할 수 없습니다. "%1"의 퍼미션을 %3(으)로 수정해 주십시오.', "$root/user/skin/blog", 'customize', '0777'), '
  • '; + array_push($commands, 'chmod 0777 '."$root/user/skin/blog"); } ?>