moved config to extra file so you can update without re-writing your config every time. Just don't forget to reame it

This commit is contained in:
Christian Haschek
2015-10-31 15:37:59 +01:00
parent b618e4970c
commit e2dda2ad56
3 changed files with 43 additions and 15 deletions

View File

@@ -0,0 +1,20 @@
<?php
// shall we log all uploaders IP addresses?
define('LOG_UPLOADER', true);
//how many resizes may one image have?
//-1 = infinite
//0 = none
define('MAX_RESIZED_IMAGES',20);
//when the user requests a resize. Can the resized image be bigger than the original?
define('ALLOW_BLOATING', false);
//Force a specific domain for this server. If set to false, will autodetect.
//Format: https://your.domain.name/
define('FORCE_DOMAIN', false);
//Shall errors be displayed to the user?
//For dev environments: true, in production: false
define('SHOW_ERRORS', false);