在提交表单时,一个勾就会杀死该应用程序。但仅限于生产
一位客户最近刚刚将一个应用程序从各个阶段转移到生产环境。我在“开箱即用”的 LAMP 服务器上设置了一个测试环境,并且可以提交一个在文本区域中打勾的表单。
但在生产中,完全相同的代码会死掉,但甚至不执行“or die();”
我将 mysql_real_escape_string 作为输入,这就是它在我的测试环境中工作的原因。
为什么这不适用于“相同”的设置?
A client just recently moved an application through the stages to production. I set up a testing environment on an "out-of-the-box" LAMP server, and can submit a form with a tick in the textarea.
But in production the exact same code dies, but doesn't even execute the "or die();"
I mysql_real_escape_string the input, which is why it works in my test environment.
Why wouldn't this work on the "same" setup?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来像是 php.ini 问题,请检查您的魔术引号选项。
Sounds like a php.ini issue, check your magic quotes options.