In my site host, I have seen (via phpinfo) that
- post_max_size = 8Mb
- upload_max_filesize = 16Mb
This led me to think that I should be able to upload as file as big as 16Mb. However, when I do this through a post method (as normal), post_max_size takes over and declares that I sent too much.
What is the method which permits sending a file as big as 16Mb ? GET - PUT - other ?
Hope someone can clarify this for me.
Simon