Firefox 下载页面而不是运行它 (XAMPP)
这真是一件奇怪的事。我“上传”(即复制到 htdocs)一个 php 文件,但它没有运行。我从 Firefox 获得下载对话框来下载它。
这真的很奇怪。虽然我可以在 Chrome 中运行该文件,但无法在 Firefox 中运行。可能是什么问题。
我在 Windows 7 64 位上获得了最新的 XAMPP 版本。
编辑:错字。
This is a really strange thing. I 'uploaded' (ie, copied to htdocs) a php file but it's not running. I get the download dialog from Firefox to download it.
That is really weird. Although I can run the file in Chrome it wouldn't run in Firefox. What can be the problem.
I got the latest XAMPP version on Windows 7 64-bit.
Edit: typo.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
听起来 PHP 没有激活。您真的确定该文件正在 Chrome 中运行吗?我怀疑不是,但是
部分被浏览器隐藏了(在 Chrome 中查看源代码)。
Sounds like PHP is not activated. Are you really sure the file is running in Chrome? I suspect not, but the
<?php ... ?>
part is hidden by the browser (view the source code in Chrome).好吧,我知道为什么它在 Firefox 中不起作用了。 Chrome 只打印它得到的内容,但我猜 Firefox 做得对。我已经在标头中写入了 JSON 对象。它是一个 api,所以这就是原因。我在 Firefox 中使用 firebug: header("Content-type: application/json"); 进行测试
Oke, I found out why it's not working in firefox. Chrome just prints what it gets but Firefox is doing it right i guess. I've written in the header to be an JSON object. It\'s an api so that is why. I was testing in firefox with firebug: header("Content-type: application/json");