While trying to upload a large image using the image files is not included in the POST to the server.
Any ideas for making sure the file is sent to the server in the POST request?
While trying to upload a large image using the image files is not included
Share
You need to say what the server is since that is what specifies the limit. Generally speaking, POST requests don’t have defined limits – though for non-file POST entries, some browsers do place limits, sometimes around 2MB.
Tell us the server type and we can tell you how to change the limit (assuming that it is a server you have some control over). It would also be helpful to tell us the file size you are expecting to transfer.