Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

Downloads a php page as a file instead of loading and displaying

  • 1 个回答
  • 12 人有此问题
  • 1 次查看
  • 最后回复者为 cor-el

more options

I reset a client's .htaccess file to process .html files through php.

As a consequence, FF downloaded instead of loading one of the html files. When I removed the .htaccess directive, this page still refused to load until I cleared my recent cache.

I found an old, locked, 2008 thread on this bug https://support.mozilla.com/tiki-view_forum_thread.php?forumId=1...

One user of this thread suggested that the problem was due to the use of UTF-8 charset. However, my page uses charset=iso-8859-1. This is a very simple XHTML 1.0 Strict page. The doctype is not the problem as it is character for character identical to other pages that do not exhibit this problem. The page validates through my web editor and at http://validator.w3.org/

The locked thread suggested editing the profile folder and removing the mimetypes.rdf file. This is NOT a solution for a public web site. There are huge numbers of casual web users who user FireFox but would not begin to have a clue about solving this problem.

Until this bug is fixed, I need some sort of work around that I can implement in my file on the server. Here's hoping that someone in the two years since the first posting has discovered one!!

I didn't include a link to the affected page because I don't yet have a test web page that exhibits the problem. It appears to be random -- I copied the page to a test web site (same server, same web hosting company), set .htaccess to process through php and the page loaded fine!!!

I reset a client's .htaccess file to process .html files through php. As a consequence, FF downloaded instead of loading one of the html files. When I removed the .htaccess directive, this page still refused to load until I cleared my recent cache. I found an old, locked, 2008 thread on this bug [https://support.mozilla.com/tiki-view_forum_thread.php?forumId=1&comments_threshold=0&comments_parentId=1452&comments_offset=0&comments_per_page=20&thread_style=commentStyle_plain] One user of this thread suggested that the problem was due to the use of UTF-8 charset. However, my page uses charset=iso-8859-1. This is a very simple XHTML 1.0 Strict page. The doctype is not the problem as it is character for character identical to other pages that do not exhibit this problem. The page validates through my web editor and at [http://validator.w3.org/] The locked thread suggested editing the profile folder and removing the ''mimetypes.rdf'' file. This is NOT a solution for a public web site. There are huge numbers of casual web users who user FireFox but would not begin to have a clue about solving this problem. Until this bug is fixed, I need some sort of work around that I can implement in my file on the server. Here's hoping that someone in the two years since the first posting has discovered one!! I didn't include a link to the affected page because I don't yet have a test web page that exhibits the problem. It appears to be random -- I copied the page to a test web site (same server, same web hosting company), set .htaccess to process through php and the page loaded fine!!!

所有回复 (1)

more options

You have to make sure that the server sends the processed php file as text/html

<?php header('Content-Type: text/html'); ?>