I'm doing a simple POST via a form to another PHP page.
In Chrome and Safari, the content appears to always be trimmed down to 524kb, though it works in Firefox.
It's too low to be any of my PHP limits, which are all in the MBs. No LimitRequestBody set in Apache.
I would think that one browser working and two not rules out some kind of firewall rule.
Any other ideas on what to check?
Simple form, value gets filled in by angular. I can verify it is there in its full length on submission:
<form method="POST" action="/forcedownload/index.php">
<input ng-hide="true" type="text" name="options[filename]" value="{{download.options.filename}}" />
<input ng-hide="true" type="text" name="options[filetype]" value="{{download.options.filetype}}" />
<input ng-hide="true" type="text" name="data" value="{{download.data}}" />
<input class="btn btn-info" type="submit" ng-click="checkStringLength(download.data,result)" value="Download as CSV" ng-hide="!showPart" />
</form>
Thanks