Bug #25212
closedError 414 - "Request-URI Too Large" when saving file in extension manager (old version)
0%
Description
Hi,
I get the following Apache error when I click on Save button :
"Request-URI Too Large
The requested URL's length exceeds the capacity limit for this server."
Look at the attachment to see the requested URL's length.
It seems that the whole file text is passed through GET even if the form data is submitted through POST.
No changes made on the web server configuration after updating our Typo3 sites from 4.3/4.4 to 4.5.
So file edition in these previous is still functional.
(issue imported from #M17812)
Files
Updated by RVVN no-lastname-given over 13 years ago
I think the problem comes from HTML code of the file editing form.
< form action="mod.php?M=tools_em method="post"
See, the action attribute is missing an ending quote, thus the POST method seems to be bypassed and a too large GET request is raised.
Edit: missing quote is located @ line 1685, character 55
$outCode = '<form action="' . $this->script . ' method="post" name="editfileform">';
Updated by RVVN no-lastname-given over 13 years ago
Sorry, missed paste ^^
=> typo3/sysext/em/classes/index.php
Updated by Dirk Wildt over 13 years ago
Dear RVVN,
Thanks, that's the solution.
Kind regards
Dirk
Updated by Steffen Kamper over 13 years ago
Updated by Steffen Kamper over 13 years ago
Reviewed and committed in:
master - https://review.typo3.org/#change,1035
4.5 - https://review.typo3.org/#change,1034