Add diagnostics to check integrity of data folder master
[photocalendar.git] / config.inc.php
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
 date_default_timezone_set('Antarctica/Macquarie');
 
define("START_DATE","2012-08-25");
 
define("MIN_IMAGE_SIZE",1000);
 
//Data should not be placed anywhere it is accessable from the web, but should still be writable by webserver
define("DATA_DIR","./data/");
 
//Cache should be writable by webserver, in the web accessable directory, not directory listable
define("CACHE_DIR","./cache/");
?>