Originally reported by: Marcel Bollmann (Bitbucket: mbollmann, GitHub: mbollmann)
If post_max_size is too low, CorA can fail when trying to import large texts. This is natural.
However, since this causes the $_POST variable to just be empty, the server will answer with "Unknown request", which is not helpful. The PHP documentation recommends using a separate $_GET variable to check for this.
Originally reported by: Marcel Bollmann (Bitbucket: mbollmann, GitHub: mbollmann)
If post_max_size is too low, CorA can fail when trying to import large texts. This is natural.
However, since this causes the
$_POST
variable to just be empty, the server will answer with "Unknown request", which is not helpful. The PHP documentation recommends using a separate$_GET
variable to check for this.