Hello DPer's, I haven't been on DP in quite some time, but I've hit a wall on this problem and trust the opinion of the members. Okay, I'm going to try to explain this as best as possible. My website, disenchantedmedia.com has several pages, index.php, about.php, etc... These are working for some people, including GoDaddy, but they are not loading for me. ONLY on the site though. I can pull other sites php files up and I can also load those same index.php, about.php, etc... files in my localhost, from the hard copies. My friend, who lives in IL, is now having the same problem I am. We can both look at .txt, .html, .ini, etc... files on the actual live website, but not .php files. And it's JUST on our website, I can view other .php files fine, since obviously this is created in newthread.php, there is no problems with FireFox. I'm 100% sure it's GoDaddy's fault, but I'm also a little hotheaded. Below are the header.php, footer.php and index.php files that are currently uploaded. I can't see anything wrong with them and they work fine offline - but I'm hoping someone here can please help. Thank you so much, GHF. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>Disenchanted Media</title> <link href="style.css" rel="stylesheet" type="text/css"/> </head> <body> <div id="container"> <!-- sidebar --> <div id="sidebar"> <h3>Latest Project</h3> <img src="./images/Sidebar/sidebar_001.jpg">.<br /> The Copper Kettle - A restaurant owned by Geroge Every, a new customer of Disenchanted Media looking to rebrand his website. Click the picture to see detailed images of our latest creation! <h3>Quick Contact</h3> <strong>Phone: </strong>779-545-0082<br /> <strong>E-Mail: </strong><a href="mailto:contact@disenchantedmedia.com">Click Here!</a> <h3>Live Help</h3> Are you in need of live help from one of our knowledgeable staff members? We'd be glad to help! <br /><br /> If the image below says "online", please click to instantly talk with one of our staff members. If the image below says "offline", please click to leave us a message with your name, e-mail address/IM client handle, phone number and a general reason for contact and one of our representatives will be in contact as soon as possible. </div> <!-- end sidebar --> <!-- main --> <div id="main"> <div id="logo"> <a href="#">Disenchanted Media</a><br/><br/> Welcome to Disenchanted Media, your #1 source for graphic/logo creation, website development, business apparel, media enhancements and customized promotional gear. Disenchanted Media prides itself in being an all-in-one business solution, whether you are just starting your venture or are a veteran to your niche, we can give your company the edge it needs, with Web 3.0 Development and nurtured media tactics; all at economical and efficient pricing! </div> <div id="menu"> <ul> <li><a href="index.php" class="active">home</a></li> <li><a href="about.php">about</a></li> <li><a href="products.php">products</a></li> <li><a href="hosting.php">hosting</a></li> <li><a href="portfolio.php">portfolio</a></li> <li><a href="contact.php">contact</a></li> </ul> </div> Code (markup): <?php include 'header.php'; ?> <div id="text"> <h1>Welcome to Your Media Makeover</h1><br /><br /> Have you been looking for a better way to promote your business? How about a flashy new website or even something traditional? Are you seeking new and exciting promotional videos and DVDs? Possibly you're considering apparel for your employees to represent your company? Whatever your media needs are <em>Disenchanted Media</em> is here to satisfy them!<br /> <h2>The Disenchanted Promise</h2><br /><br /> <em>Disenchanted Media</em> promises to beat the competition by offering our customers the most cost-efficient pricing on the market. We also guarentee your satisfaction 110%, or your money back*! </div> <?php include 'footer.php'; ?> Code (markup): </div> <!-- end main --> <!-- footer --> <div id="footer"> <div id="menu_footer"><a href="index.php">home</a> | <a href="about.php">about</a> | <a href="products.php">products</a> | <a href="hosting.php">hosting</a> | <a href="portfolio.php">portfolio</a> | <a href="contact.php">contact</a> | <a href="termsofservice.php">terms of service contract agreement</a> | <a href="privacystatement.php">privacy statement</a> | <a href="sitemap.php">sitemap</a></div> <div id="right_footer"> © Copyright 2009 Disenchanted Media </div> </div> <!-- end footer --> </div> <script type="text/javascript"> var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); </script> <script type="text/javascript"> try { var pageTracker = _gat._getTracker("UA-10642271-1"); pageTracker._trackPageview(); } catch(err) {}</script> </body> </html> Code (markup):