I'm trying to edit large (200KB or so) articles on my MediaWiki install, but doing so gives me this error:
Request Entity Too Large
The requested resource
/path/to/my/wiki/index.php
does not allow request data with POST requests, or the amount of data provided in the request exceeds the capacity limit.
According to the Apache docs, the LimitRequestBody is by default 0 (unlimited). I don't think I'm near the MediaWiki limit of 2048KB. I can't find where/if PHP is limiting me.
What gives?
Update: My Apache error logs say:
request body exceeds maximum size for SSL buffer
And right below that:
could not buffer message body to allow SSL renegotiation to proceed
It appears that a possible solution can be found here.
But it requires me to recompile mod_ssl
. It appears towards the end of that bug report they were talking about adding in a directive for this, instead of recompiling. Anyone know if this happened? Also, do I just need to recompile mod_ssl
for this fix? And if so, how do I use my compiled version instead of the stock Ubuntu one?