summaryrefslogtreecommitdiffstats
path: root/lib/util.php
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <jan@unhosted.org>2012-04-14 18:44:32 +0200
committerJan-Christoph Borchardt <jan@unhosted.org>2012-04-14 18:44:32 +0200
commitf16cfbab5e7800adb94bf5c7978ab1fe16b6fc78 (patch)
tree4205670bad1902622d661f6815604ec60718a8fb /lib/util.php
parent85cb171cb863e24213799fbbb02dfb1d6b8c78ac (diff)
downloadnextcloud-server-f16cfbab5e7800adb94bf5c7978ab1fe16b6fc78.tar.gz
nextcloud-server-f16cfbab5e7800adb94bf5c7978ab1fe16b6fc78.zip
improved installation instructions
Diffstat (limited to 'lib/util.php')
-rw-r--r--lib/util.php2
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;
}