Quote:
Originally Posted by mlevenson
Ok so I go tthis installed and I have been testing it out, so far so good except I'm getting error's on file size. It seems that when I upload a file of 603546 it fails due to the configured limit of 524288.
I have modified the galleryconfig.php $cfgMaxFormFileSize = 30720000 but there is a comment on it that it can be ignored. I even hard coded in this value in the upload.php file and I still get an error.
HELP!
|
You need to change the setting in your php.ini. The problem has nothing to do with the HTML being sent to the client, but is a limit set in php itself.
I think the directives you need to change are:
upload_max_filesize = 8M
post_max_size = 8M
8M can replaced with something else, like 1M or 2M ..
Regards,
?ke