I searched forum and found fix to limit file types in config.php. I'm now looking for fix for max file size. I tried several of the answers and was only able to get it to work by creating a php.ini file, and then uploading it to the root of install. The file contains the following:
-----------
php.ini file:
post_max_size = 100000
upload_max_filesize = 100000
settings.php:
ini_set('post_max_size', '100000');
ini_set('upload_max_filesize', '100000');
-----------
It stops larger files from uploading, but no error message is displayed like when wrong file type is used. It just returns user back to the form with uploads field blank. I don't have access to php.ini on server, and that is why I created one to put in Machform directory.
Any ideas on how to return an error message to the user within the form?
Otherwise the software works great and I am glad I found your site. Thanks.