aboutsummaryrefslogtreecommitdiffhomepage
path: root/index.php
diff options
context:
space:
mode:
authorSebastien SAUVAGE <sebsauvage@sebsauvage.net>2013-03-04 21:14:07 +0100
committerSebastien SAUVAGE <sebsauvage@sebsauvage.net>2013-03-04 21:14:07 +0100
commitf2cb5f95a9505d0a656990307daaef441505d213 (patch)
tree969f6017be17632bfe88df7d88886ff69d3c967b /index.php
parent8a80e4fe07c2d116ad87e7d0699859d10229607e (diff)
downloadShaarli-f2cb5f95a9505d0a656990307daaef441505d213.tar.gz
Shaarli-f2cb5f95a9505d0a656990307daaef441505d213.tar.zst
Shaarli-f2cb5f95a9505d0a656990307daaef441505d213.zip
Check that Shaarli has the right to write in its own directory.
Because some user forget to check this at installation.
Diffstat (limited to 'index.php')
-rw-r--r--index.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/index.php b/index.php
index 8197719a..7b2781f1 100644
--- a/index.php
+++ b/index.php
@@ -78,6 +78,7 @@ header("Cache-Control: post-check=0, pre-check=0", false);
78header("Pragma: no-cache"); 78header("Pragma: no-cache");
79 79
80// Directories creations (Note that your web host may require differents rights than 705.) 80// Directories creations (Note that your web host may require differents rights than 705.)
81if (!is_writable(realpath(dirname(__FILE__)))) die('<pre>ERROR: Shaarli does not have the right to write in its own directory ('.realpath(dirname(__FILE__)).').</pre>');
81if (!is_dir($GLOBALS['config']['DATADIR'])) { mkdir($GLOBALS['config']['DATADIR'],0705); chmod($GLOBALS['config']['DATADIR'],0705); } 82if (!is_dir($GLOBALS['config']['DATADIR'])) { mkdir($GLOBALS['config']['DATADIR'],0705); chmod($GLOBALS['config']['DATADIR'],0705); }
82if (!is_dir('tmp')) { mkdir('tmp',0705); chmod('tmp',0705); } // For RainTPL temporary files. 83if (!is_dir('tmp')) { mkdir('tmp',0705); chmod('tmp',0705); } // For RainTPL temporary files.
83if (!is_file($GLOBALS['config']['DATADIR'].'/.htaccess')) { file_put_contents($GLOBALS['config']['DATADIR'].'/.htaccess',"Allow from none\nDeny from all\n"); } // Protect data files. 84if (!is_file($GLOBALS['config']['DATADIR'].'/.htaccess')) { file_put_contents($GLOBALS['config']['DATADIR'].'/.htaccess',"Allow from none\nDeny from all\n"); } // Protect data files.