We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I think validateMaxPostSize method is actually never called in case POST data exceeds $_SERVER['CONTENT_LENGTH']. It is meant to be called from validate() which is called from fireEvents but it can never be called due this condition as it calls https://github.com/nette/application/blob/master/src/Application/UI/Form.php#L108 which returns always FALSE in that case
$_SERVER['CONTENT_LENGTH']
The text was updated successfully, but these errors were encountered:
How could POST data exceed $_SERVER['CONTENT_LENGTH']? Maybe related https://github.com/nette/nette/pull/793/files
Sorry, something went wrong.
Yes, it is related, thanks! POST data can be exceeded if you try to upload too large file
Hmm, this is related to 2.2, because of this nette/application@1f492cf
No branches or pull requests
I think validateMaxPostSize method is actually never called in case POST data exceeds
$_SERVER['CONTENT_LENGTH']
.It is meant to be called from validate() which is called from fireEvents but it can never be called due this condition as it calls https://github.com/nette/application/blob/master/src/Application/UI/Form.php#L108 which returns always FALSE in that case
The text was updated successfully, but these errors were encountered: