diff options
author | Christophe HENRY <christophe.henry@sbgodin.fr> | 2014-07-31 23:12:29 +0200 |
---|---|---|
committer | Christophe HENRY <christophe.henry@sbgodin.fr> | 2014-07-31 23:31:58 +0200 |
commit | 25f5c59db6ac482ae2dd7996c9dd6794680c2a5b (patch) | |
tree | bc324827105de254f51e635348d028d40b6938af | |
parent | e411f7f9d7682256fdba017d409e8356c4644ab9 (diff) | |
download | Shaarli-25f5c59db6ac482ae2dd7996c9dd6794680c2a5b.tar.gz Shaarli-25f5c59db6ac482ae2dd7996c9dd6794680c2a5b.tar.zst Shaarli-25f5c59db6ac482ae2dd7996c9dd6794680c2a5b.zip |
Adds configuration variables, TPL and TMP, for RainTPL
The path for templates and temporary files are now part of the configuration.
For a custom install, it's possible to put these writable directories elsewhere than in the read-only source code.
-rw-r--r-- | index.php | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -26,6 +26,8 @@ $GLOBALS['config']['CACHEDIR'] = 'cache'; // Cache directory for thumbnails for | |||
26 | $GLOBALS['config']['PAGECACHE'] = 'pagecache'; // Page cache directory. | 26 | $GLOBALS['config']['PAGECACHE'] = 'pagecache'; // Page cache directory. |
27 | $GLOBALS['config']['ENABLE_LOCALCACHE'] = true; // Enable Shaarli to store thumbnail in a local cache. Disable to reduce webspace usage. | 27 | $GLOBALS['config']['ENABLE_LOCALCACHE'] = true; // Enable Shaarli to store thumbnail in a local cache. Disable to reduce webspace usage. |
28 | $GLOBALS['config']['PUBSUBHUB_URL'] = ''; // PubSubHubbub support. Put an empty string to disable, or put your hub url here to enable. | 28 | $GLOBALS['config']['PUBSUBHUB_URL'] = ''; // PubSubHubbub support. Put an empty string to disable, or put your hub url here to enable. |
29 | $GLOBALS['config']['RAINTPL_TMP'] = 'tmp' ; // Raintpl cache directory | ||
30 | $GLOBALS['config']['RAINTPL_TPL'] = 'tpl/' ; // Raintpl template directory (keep the trailling slash!) | ||
29 | $GLOBALS['config']['UPDATECHECK_FILENAME'] = $GLOBALS['config']['DATADIR'].'/lastupdatecheck.txt'; // For updates check of Shaarli. | 31 | $GLOBALS['config']['UPDATECHECK_FILENAME'] = $GLOBALS['config']['DATADIR'].'/lastupdatecheck.txt'; // For updates check of Shaarli. |
30 | $GLOBALS['config']['UPDATECHECK_INTERVAL'] = 86400 ; // Updates check frequency for Shaarli. 86400 seconds=24 hours | 32 | $GLOBALS['config']['UPDATECHECK_INTERVAL'] = 86400 ; // Updates check frequency for Shaarli. 86400 seconds=24 hours |
31 | // Note: You must have publisher.php in the same directory as Shaarli index.php | 33 | // Note: You must have publisher.php in the same directory as Shaarli index.php |
@@ -63,9 +65,9 @@ error_reporting(E_ALL^E_WARNING); // See all error except warnings. | |||
63 | //error_reporting(-1); // See all errors (for debugging only) | 65 | //error_reporting(-1); // See all errors (for debugging only) |
64 | 66 | ||
65 | include "inc/rain.tpl.class.php"; //include Rain TPL | 67 | include "inc/rain.tpl.class.php"; //include Rain TPL |
66 | raintpl::$tpl_dir = "tpl/"; // template directory | 68 | raintpl::$tpl_dir = $GLOBALS['config']['RAINTPL_TPL']; // template directory |
67 | if (!is_dir('tmp')) { mkdir('tmp',0705); chmod('tmp',0705); } | 69 | if (!is_dir($GLOBALS['config']['RAINTPL_TMP'])) { mkdir($GLOBALS['config']['RAINTPL_TMP'],0705); chmod($GLOBALS['config']['RAINTPL_TMP'],0705); } |
68 | raintpl::$cache_dir = "tmp/"; // cache directory | 70 | raintpl::$cache_dir = $GLOBALS['config']['RAINTPL_TMP']; // cache directory |
69 | 71 | ||
70 | ob_start(); // Output buffering for the page cache. | 72 | ob_start(); // Output buffering for the page cache. |
71 | 73 | ||
@@ -88,7 +90,7 @@ header("Pragma: no-cache"); | |||
88 | // Directories creations (Note that your web host may require differents rights than 705.) | 90 | // Directories creations (Note that your web host may require differents rights than 705.) |
89 | if (!is_writable(realpath(dirname(__FILE__)))) die('<pre>ERROR: Shaarli does not have the right to write in its own directory ('.realpath(dirname(__FILE__)).').</pre>'); | 91 | if (!is_writable(realpath(dirname(__FILE__)))) die('<pre>ERROR: Shaarli does not have the right to write in its own directory ('.realpath(dirname(__FILE__)).').</pre>'); |
90 | if (!is_dir($GLOBALS['config']['DATADIR'])) { mkdir($GLOBALS['config']['DATADIR'],0705); chmod($GLOBALS['config']['DATADIR'],0705); } | 92 | if (!is_dir($GLOBALS['config']['DATADIR'])) { mkdir($GLOBALS['config']['DATADIR'],0705); chmod($GLOBALS['config']['DATADIR'],0705); } |
91 | if (!is_dir('tmp')) { mkdir('tmp',0705); chmod('tmp',0705); } // For RainTPL temporary files. | 93 | if (!is_dir($GLOBALS['config']['RAINTPL_TMP'])) { mkdir($GLOBALS['config']['RAINTPL_TMP'],0705);chmod($GLOBALS['config']['RAINTPL_TMP'],0705); } // For RainTPL temporary files. |
92 | if (!is_file($GLOBALS['config']['DATADIR'].'/.htaccess')) { file_put_contents($GLOBALS['config']['DATADIR'].'/.htaccess',"Allow from none\nDeny from all\n"); } // Protect data files. | 94 | if (!is_file($GLOBALS['config']['DATADIR'].'/.htaccess')) { file_put_contents($GLOBALS['config']['DATADIR'].'/.htaccess',"Allow from none\nDeny from all\n"); } // Protect data files. |
93 | // Second check to see if Shaarli can write in its directory, because on some hosts is_writable() is not reliable. | 95 | // Second check to see if Shaarli can write in its directory, because on some hosts is_writable() is not reliable. |
94 | if (!is_file($GLOBALS['config']['DATADIR'].'/.htaccess')) die('<pre>ERROR: Shaarli does not have the right to write in its data directory ('.realpath($GLOBALS['config']['DATADIR']).').</pre>'); | 96 | if (!is_file($GLOBALS['config']['DATADIR'].'/.htaccess')) die('<pre>ERROR: Shaarli does not have the right to write in its data directory ('.realpath($GLOBALS['config']['DATADIR']).').</pre>'); |