Posted by Eijaz
2014-07-06

Hi,

I would like to change the maximum upload file size to 10M.
I found the following: web/config/config.ad_pic.inc.php
Is it legitimate to change from:

define( 'FILEUP_MAX_FILESIZE', 5 * 1000 * 1000 );

To:

define( 'FILEUP_MAX_FILESIZE', 10 * 1000 * 1000 );


Thanks a lot,
Posted by Tom
2014-07-07

>I found the following: web/config/config.ad_pic.inc.php Is it legitimate to change

Yes, but this is not the only one that puts a maxmum limit on the filesize to upload. In php.ini, there are three settings that impose the maximum limit. They are:

upload_max_filesize
post_max_size
memory_limit

If you want to upload 10mb files, all of the settings must be larger than 10M.