I need to increase the maximum upload size to 50MB. In the php.ini file, I changed the `upload_max_filesize` from 8M to 50M but that didn't fix the problem. I'm still getting the following error:
Error File is too large. Max uploading size is 8M
I assume I have to modify the `post_max_size` from 8M to 50M but I was told by the server administrator that increasing the `post_max_size` can be a security risk.
Does increasing `post_max_size` create a security risk? If so, can I increase the upload limit without increasing the `post_max_size`?
Thanks