Request-URI Too Large如何解决
程序员文章站
2022-04-24 23:21:49
...
Request-URI Too Large怎么解决
414 Request-URI Too Large
The requested URL's length exceeds the capacity
limit for this server.
Apache/1.3.29 Server at localhost Port 80
在把数据内容上传到mysql里时出现了问题。
$Sql="INSERT INTO ". $tTableName ." set ".
//"tTitle='标题" . date("H:i:s") . "',".
//"tText='内容" . date("H:i:s") . "',".
"tTitle='".$tTitle."'," .
"tText='".$tText."'," .
"tUser='".$_SESSION["ZhangHu"]."'," .
"tBKId='".$BKId."'," .
"tDateTime ='". date("Y-m-d H:i:s") ."'";
mysql_query($Sql);//执行添加操作
在未传值时用代码 alert(tText.length) 知道tText有三万多的长度
因为$tText太大了,
要怎么修改服务器设置才可以存大内容到mysql里呢?
网上说和这个有关
这是在php.ini里的内容
; Valid range 0 - 2147483647. Default = 4096.
;mssql.textlimit = 4096
; Valid range 0 - 2147483647. Default = 4096.
;mssql.textsize = 4096
Request-URI Too Large
The requested URL's length exceeds the capacity
limit for this server.
request failed: URI too long
Apache/1.3.29 Server at localhost Port 80
在把数据内容上传到mysql里时出现了问题。
$Sql="INSERT INTO ". $tTableName ." set ".
//"tTitle='标题" . date("H:i:s") . "',".
//"tText='内容" . date("H:i:s") . "',".
"tTitle='".$tTitle."'," .
"tText='".$tText."'," .
"tUser='".$_SESSION["ZhangHu"]."'," .
"tBKId='".$BKId."'," .
"tDateTime ='". date("Y-m-d H:i:s") ."'";
mysql_query($Sql);//执行添加操作
在未传值时用代码 alert(tText.length) 知道tText有三万多的长度
因为$tText太大了,
要怎么修改服务器设置才可以存大内容到mysql里呢?
网上说和这个有关
这是在php.ini里的内容
; Valid range 0 - 2147483647. Default = 4096.
;mssql.textlimit = 4096
; Valid range 0 - 2147483647. Default = 4096.
;mssql.textsize = 4096
RequestURI?Too?Large
Request
URI
Too
Large
专题推荐
-
独孤九贱-php全栈开发教程
全栈 170W+
主讲:Peter-Zhu 轻松幽默、简短易学,非常适合PHP学习入门
-
玉女心经-web前端开发教程
入门 80W+
主讲:灭绝师太 由浅入深、明快简洁,非常适合前端学习入门
-
天龙八部-实战开发教程
实战 120W+
主讲:西门大官人 思路清晰、严谨规范,适合有一定web编程基础学习
- 最新文章
- 热门排行
推荐阅读
-
Nginx HTTP:413 Request Entity Too Large解决方法
-
Apache Request-URI Too Large错误解决方法
-
Java代码解决ElasticSearch的Result window is too large问题
-
解决nginx报错信息 client intended to send too large body: 1331696 bytes
-
三个思路解决laravel上传文件报错:413 Request Entity Too Large问题
-
Jetty提交数据时报java.lang.IllegalStateException: Form too large270468>200000问题解决
-
jetty的Form too large异常解决方案
-
jetty9 Form too large 异常解决方案
-
Jetty提交数据时报java.lang.IllegalStateException: Form too large270468>200000问题解决
-
Request header is too large异常springboot解决方案
网友评论
文明上网理性发言,请遵守 新闻评论服务协议
我要评论