0

我曾尝试搜索这个奇怪的问题,但找不到任何关于它的信息。我也在一周的最后期限,我要疯了。

我的伙伴已经在他的本地机器上安装了 WAMP。一切似乎都符合我的设置。但是,当他在我们的网站上注册时,它根本不会提交数据。浏览器的行为就像它发送它一样。它给出了已经发送的数据,你确定要重新发送数据框。

但是,WAMP 服务器显示什么都没有到达那里。在像 vhost 一样设置完所有内容后,该网站就可以正常运行。PHP 在任何地方都找不到 POST 数据。

我们正在使用 Codeigniter 2.1.4、PHP 5.3 和 5.4(his)以及 Apache 2.2 或 2.4(his)。注册全局变量已关闭。

我不知道是否有错误,它在我们的两个团队系统上运行良好,他只是没有这样做。

任何线索都会很棒。谢谢。

4

1 回答 1

0

If your other teams systems are executing the same code and its working fine on their system but not your then their will be a platform issue. Otherwise there might be another issue that generally occurs in case of form submissions.
The problem improper starting and closing of tags around form tag.
For example:

<form>
<div>
</form>
</div>

Check the code in firebug if its happening or not.

于 2013-08-22T18:33:03.353 回答