我开发了一个PHP Web应用程序。我给了用户一个选项,可以一次更新多个问题。在这样做时,有时用户遇到此错误。有没有办法在apache中增加URL的长度?
答案 0 :(得分:147)
在Apache下,限制是可配置的值 LimitRequestLine
。如果要支持更长的请求URI,请将此值更改为大于其默认值8190的值。该值位于 /etc/apache2/apache2.conf 中。如果没有,请在LimitRequestLine 10000
下添加新行(AccessFileName .htaccess
)。
但是,请注意,如果您实际上遇到此限制,则可能会开始滥用GET
。您应该使用POST
来传输此类数据 - 特别是因为您甚至承认您正在使用它来更新值。如果您查看上面的链接,您会注意到Apache甚至说“在正常情况下,不应该更改默认值。”
答案 1 :(得分:12)
根据John的回答,我将GET请求更改为POST请求。它可以工作,而无需更改服务器配置。所以我去了解如何实现这一点。以下页面很有帮助:
jQuery Ajax POST example with PHP (注意清理过帐的数据备注)和
http://www.openjs.com/articles/ajax_xmlhttp_using_post.php
基本上,区别在于GET请求在一个字符串中有url和参数然后发送null:
http.open("GET", url+"?"+params, true);
http.send(null);
而POST请求在单独的命令中发送url和参数:
http.open("POST", url, true);
http.send(params);
这是一个有效的例子:
ajaxPOST.html:
<html>
<head>
<script type="text/javascript">
function ajaxPOSTTest() {
try {
// Opera 8.0+, Firefox, Safari
ajaxPOSTTestRequest = new XMLHttpRequest();
} catch (e) {
// Internet Explorer Browsers
try {
ajaxPOSTTestRequest = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
ajaxPOSTTestRequest = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e) {
// Something went wrong
alert("Your browser broke!");
return false;
}
}
}
ajaxPOSTTestRequest.onreadystatechange = ajaxCalled_POSTTest;
var url = "ajaxPOST.php";
var params = "lorem=ipsum&name=binny";
ajaxPOSTTestRequest.open("POST", url, true);
ajaxPOSTTestRequest.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
ajaxPOSTTestRequest.send(params);
}
//Create a function that will receive data sent from the server
function ajaxCalled_POSTTest() {
if (ajaxPOSTTestRequest.readyState == 4) {
document.getElementById("output").innerHTML = ajaxPOSTTestRequest.responseText;
}
}
</script>
</head>
<body>
<button onclick="ajaxPOSTTest()">ajax POST Test</button>
<div id="output"></div>
</body>
</html>
ajaxPOST.php:
<?php
$lorem=$_POST['lorem'];
print $lorem.'<br>';
?>
我刚发送了12,000多个字符,没有任何问题。
答案 2 :(得分:3)
在使用JQuery中的$ .getJSON()后出现此错误。我刚刚改为发帖:
data = getDataObjectByForm(form);
var jqxhr = $.post(url, data, function(){}, 'json')
.done(function (response) {
if (response instanceof Object)
var json = response;
else
var json = $.parseJSON(response);
// console.log(response);
// console.log(json);
jsonToDom(json);
if (json.reload != undefined && json.reload)
location.reload();
$("body").delay(1000).css("cursor", "default");
})
.fail(function (jqxhr, textStatus, error) {
var err = textStatus + ", " + error;
console.log("Request Failed: " + err);
alert("Fehler!");
});
答案 3 :(得分:1)
摘自 RFC 2616: Hypertext Transfer Protocol -- HTTP/1.1:
POST 方法用于请求原始服务器接受 请求中包含的实体作为资源的新下属 由请求行中的Request-URI标识。 POST是专门设计的 允许统一的方法来涵盖以下功能:
- 现有资源的注释;
- 向公告栏,新闻组,邮件列表发送消息, 或类似的一组文章;
- 提供一个数据块,例如提交的结果 形式,数据处理过程;
- 通过追加操作扩展数据库。
答案 4 :(得分:1)
我有一个简单的解决方法。
假设您的URI的字符串stringdata
太长。您可以根据服务器的限制将其分解为多个部分。然后提交第一个,在我的情况下写一个文件。然后提交下一个以追加以前添加的数据。