diff options
author | Jan-Christoph Borchardt <jan@unhosted.org> | 2012-04-14 18:44:32 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <jan@unhosted.org> | 2012-04-14 18:44:32 +0200 |
commit | f16cfbab5e7800adb94bf5c7978ab1fe16b6fc78 (patch) | |
tree | 4205670bad1902622d661f6815604ec60718a8fb /lib/util.php | |
parent | 85cb171cb863e24213799fbbb02dfb1d6b8c78ac (diff) | |
download | nextcloud-server-f16cfbab5e7800adb94bf5c7978ab1fe16b6fc78.tar.gz nextcloud-server-f16cfbab5e7800adb94bf5c7978ab1fe16b6fc78.zip |
improved installation instructions
Diffstat (limited to 'lib/util.php')
-rw-r--r-- | lib/util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php index 34f535d2d5c..2ea392ec31d 100644 --- a/lib/util.php +++ b/lib/util.php @@ -25,7 +25,7 @@ class OC_Util { $success=@mkdir($CONFIG_DATADIRECTORY_ROOT); if(!$success) { $tmpl = new OC_Template( '', 'error', 'guest' ); - $tmpl->assign('errors',array(1=>array('error'=>"Can't create data directory (".$CONFIG_DATADIRECTORY_ROOT.")",'hint'=>"You can usually fix this by giving the webserver write access to the ownCloud directory '".OC::$SERVERROOT."' "))); + $tmpl->assign('errors',array(1=>array('error'=>"Can't create data directory (".$CONFIG_DATADIRECTORY_ROOT.")",'hint'=>"You can usually fix this by giving the webserver write access to the ownCloud directory '".OC::$SERVERROOT."' (in a terminal, use the command 'chown -R www-data:www-data /path/to/your/owncloud/install/data' "))); $tmpl->printPage(); exit; } |