Can I ask ideas on how to solve http://www.allseasonhotels.net error. Everytime I access the site it propmts me to download a file. Thanks
Make sure that all of your file extensions are correct and that everything in located in the proper directory.
Thank you for the quick reply. Everything is in place and I am using wordpress. I dont really have other ideas how to solve this.
The file it prompts you to download has the extension PHTML I'm guessing this is a mistake and I wouldn't expect your server recognises that as a browseable file type. Perhaps you can paste the contents of your .htaccess file
I think the problem with PHP handler on the server as it doesn't execute PHP file and instead of that it is downloading the page. If you are the administrator of the server check your Apache and PHP configuration or contact your host if you are on shared server. Also, if you have any code in your .htaccess containing following line then comment it and then try to access your site: application/x-httpd-php You will need to check for .htaccess in your root folder (publc_html) as well as out side root folder. Kailash
Thank you for the help. Here is the HTACCESS anyway I just solved the problem. The server is not using PHP5. I just commented AddHandler application/x-httpd-php5 .html .php .htm line and changed it to AddHandler application/x-httpd-php .html .htm .php and it was solved thanks for the help.