Problems with a site

Status
Not open for further replies.
It's because the header is php.

I think there's an AddOn to deal with this issue.

Head off to Mozilla and search there.
 
I'm using the current version of Firefox as well, however I see the header with no problem. It's possible that one instance of the site had no header for a server error and you are now seeing the cache occur each time.

I'd suggest cleaning out your cache and then make sure you use your "Reload" button to send a "refresh" request.

There is also the option that the sites AJAX (Javascript) could be misfunctioning if you've got tight Javascript filters on your browser. You could try adding this site to your trusted if you want to continue tight controls.
 
There is also the option that the sites AJAX (Javascript) could be misfunctioning if you've got tight Javascript filters on your browser. You could try adding this site to your trusted if you want to continue tight controls.

What are tight Javascript filters? What are tight controls?
 
To be honest since you replied, I just tested the browser with no Javascript and that is not the problem. Like I said it's more likely to be that you cached a copy of the page and keep reloading the cache.
 
To be honest since you replied, I just tested the browser with no Javascript and that is not the problem. Like I said it's more likely to be that you cached a copy of the page and keep reloading the cache.

I cleared the cache but i still get the same problem:

Broken PHP
 
I had yet another look... To be honest It's my bad... I wasn't paying attention to the OP and wasn't putting in the right site address Oops!!! :)

Anyways... The reason for the the PHP header not working correctly is actually a serverside issue. The page itself is made of two Frames. The top frame asks for top.php where as the bottom one asks for a .html page.

The php file either hasn't been uploaded with the right CHMOD (It might lack the "Execution" rights but still have the "Read" Rights) or for some reason the web server has lost it's ability to parse PHP properly and has defaulted to just sending the file to the browser on request.

I think the likelihood is that the page itself is just a HTML file, but has been named PHP and the webserver hasn't been configured to parse pure HTML contents without having any PHP contents to parse.

Anyways, the only thing you can do is hope that a webmaster is informed and the problem fixed.
 
The php file either hasn't been uploaded with the right CHMOD (It might lack the "Execution" rights but still have the "Read" Rights) or for some reason the web server has lost it's ability to parse PHP properly and has defaulted to just sending the file to the browser on request.

But if it's a parsing problem then why does it work with Internet Explorer?
 
It's possible that there are two versions of the page that are pulled depending on the browser type.

Looking further at the code it does actually have exposed PHP commands within it. It's likely also that Internet Explorer only parses the HTML that's in the page rather than concluding it a download.
 
Status
Not open for further replies.
Back
Top