I have a website that can accept POST requests.
In this site, I'm transferring a lot of data.
However, when my POST parameter reaches a certain length (around 220,000 characters), I start getting a 404 error on the request, saying that the php file cannot be found.
It seems there's some kind of message size threshold that, when exceeded, causes a 404 error.
I've discovered that splitting up the huge data into multiple parameters increases this threshold (for example, splitting the data into eighths increases the threshold to around 780,000).
Is this an issue with x10hosting, or my site? If so, is there any way to circumvent this, and if not what are the limitations / how much data can I send per request?
In this site, I'm transferring a lot of data.
However, when my POST parameter reaches a certain length (around 220,000 characters), I start getting a 404 error on the request, saying that the php file cannot be found.
It seems there's some kind of message size threshold that, when exceeded, causes a 404 error.
I've discovered that splitting up the huge data into multiple parameters increases this threshold (for example, splitting the data into eighths increases the threshold to around 780,000).
Is this an issue with x10hosting, or my site? If so, is there any way to circumvent this, and if not what are the limitations / how much data can I send per request?