diff options
author | Friendika <info@friendika.com> | 2010-11-09 18:31:43 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-11-09 18:31:43 -0800 |
commit | 0e1af81d4253ee6997fa9cc87e0b6f1ccf16b9a0 (patch) | |
tree | 9a0f61bb4e85bbebf02dc3b4de44b4ec8b30ba30 /htconfig.php | |
parent | f4fd67992812c5c356ff51e875077921a2222d90 (diff) | |
download | volse-hubzilla-0e1af81d4253ee6997fa9cc87e0b6f1ccf16b9a0.tar.gz volse-hubzilla-0e1af81d4253ee6997fa9cc87e0b6f1ccf16b9a0.tar.bz2 volse-hubzilla-0e1af81d4253ee6997fa9cc87e0b6f1ccf16b9a0.zip |
provide default photo and text limits (which can be over-ridden)
Diffstat (limited to 'htconfig.php')
-rw-r--r-- | htconfig.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/htconfig.php b/htconfig.php index 36c685f7c..8f6489965 100644 --- a/htconfig.php +++ b/htconfig.php @@ -36,10 +36,14 @@ $a->config['register_policy'] = REGISTER_OPEN; $a->config['register_text'] = ''; $a->config['admin_email'] = ''; -// Maximum size of an imported message, 0 is unlimited (but our database 'text' element is limited to 65535). +// Maximum size of an imported message, 0 is unlimited $a->config['max_import_size'] = 10000; +// maximum size of uploaded photos + +$a->config['system']['maximagesize'] = 800000; + // Location of PHP command line processor $a->config['php_path'] = 'php'; |