Rechercher dans l’assistance

Évitez les escroqueries à l’assistance. Nous ne vous demanderons jamais d’appeler ou d’envoyer un SMS à un numéro de téléphone ou de partager des informations personnelles. Veuillez signaler toute activité suspecte en utilisant l’option « Signaler un abus ».

Learn More

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

  • 1 réponse
  • 12 ont ce problème
  • 11 vues
  • Dernière réponse par 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!!!

Toutes les réponses (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'); ?>