Is there a limit set on the size of file uploads and limit the file types please?
Thanks.
Mike
Is there a limit set on the size of file uploads and limit the file types please?
Thanks.
Mike
Hi ..
Upload size limit depending on your PHP configuration, default is 2Mb. if you can edit php.ini file you can search this line and make a change. but this can be done depends on your hosting policy.
upload_max_filesize = 2M
Or you can try insert this code into your config.php file:
ini_set("upload_max_filesize","10M");to limit the file types, check this thread:
http://www.appnitro.com/forums/topic/limit-attachment-types?replies=4#post-985
You must log in to post.