文件上传错误 - 403 禁止
我正在使用 Titanium Mobile 和 HTTPClient 构建 iPhone 应用程序。每当我将文件发布到生产服务器时,我都会收到以下响应。如果我发布到 postbin.org 或我的本地或临时服务器,那就没问题了。
我不认为该错误是在 iPhone 模拟器上生成的。我认为这是服务器设置之类的。我有一个使用“上传”类在 CodeIgniter 中编写的应用程序。
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>403 Forbidden</title>
</head><body>
<h1>Forbidden</h1>
<p>You don't have permission to access {my_uri} on this server.</p>
</body></html>
I'm building an iPhone app using Titanium Mobile and using the HTTPClient. Whenever I post files to production server I get the following response. If I post to postbin.org or my local or staging servers it's okay.
I don't think the error is generated on the iPhone simulator. I think its a server setting or something. I have an app written in CodeIgniter using the "upload" class.
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>403 Forbidden</title>
</head><body>
<h1>Forbidden</h1>
<p>You don't have permission to access {my_uri} on this server.</p>
</body></html>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这绝对看起来像 Apache mod_security 错误。它通常由表单提交(获取或发布)触发。
请您的服务器管理员关闭 Apache mod_security 模块。
This definitely looks like an Apache mod_security error. It is usually triggered by a Form submission (Get or Post).
Ask your server administrator to turn off the Apache mod_security module.