summaryrefslogtreecommitdiffstats
path: root/system/application/config/example/config.php
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xssn.at>2010-07-11 20:43:27 +0200
committerFlorian Pritz <bluewind@xssn.at>2010-07-11 20:43:27 +0200
commitfb01797274be73ac10124b2f728f7092307e6c37 (patch)
tree7b85bba0973a8b20ed9bbe8796083597ae98ce15 /system/application/config/example/config.php
parent9323029d51f2012b8193a422ab0180436dd8ce8c (diff)
allow small files to be excluded from deletion
Signed-off-by: Florian Pritz <bluewind@xssn.at>
Diffstat (limited to 'system/application/config/example/config.php')
-rwxr-xr-xsystem/application/config/example/config.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/system/application/config/example/config.php b/system/application/config/example/config.php
index b9ce20468..af54fb383 100755
--- a/system/application/config/example/config.php
+++ b/system/application/config/example/config.php
@@ -341,6 +341,10 @@ $config['upload_path'] = FCPATH.'data/uploads';
$config['upload_max_size'] = 256*1024*1024;
$config['upload_max_text_size'] = 2*1024*1024;
$config['upload_max_age'] = 60*60*24*5; // 5 days
+
+// won't be deleted
+$config['small_upload_size'] = 1024*10; // 10KB
+
$config['passwordsalt'] = ''; // just enter any string you want here
/* End of file config.php */