• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Mozilla and Php

pcman83

Senior member
If you have mozilla go to this site.

My Clan Site

Enter it, you can watch the videos if you want though.

Click on forum and it will be blank. Internet explorer works fine. Anyone have a fix for mozilla?
 
It's not PHP. The PHP code is run by the server, so the web browser never sees it.

The problem has to be in the HTML output by your PHP. One common reason why a page will be blank is if the page has a markup type label at top (like HTML 4.0) and the page is not actually that markup type. Use an HTML validator like the one at http://validator.w3.org/ to find the errors in your HTML.
 
i see a number of things wrong with the html. there are <a> tags that arent' closed. i see two <html> tags (i haven't searched for more). i see two <head> tags. start by cleaning these things up, and follow cquark's suggestion of cleaning everything suggested by the validator that cquark suggested.

edit: there are three <head> tags and three <body> tags. those are probably the most important thing to fix. you probably included a whole page within another one through php somewhere.
 
Back
Top