Add image upload and image watermarking
[photocalendar.git] / config.inc.php
blob:a/config.inc.php -> blob:b/config.inc.php
  <?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/");
  ?>