Apache2 no longer parses php scripts in html files

Started by
3 comments, last by Wilhelm van Huyssteen 11 years, 8 months ago
Hi.

Im a linux beginner. about a year ago I managed to set up a dedicated server to host my game servers and my website. Starting with a barebones centos instalation I had to install everything myself. I use apache2, oracle db, php and java for my game servers. The server has been running happely all these months without a restart. And of course noob as I am I dont have any startup scripts installed.

A week ago my oracle db dies! (or so I thought). Freaking out a bit becuase my game servers and highscore pages on my website stopped working I restarted my box for the first time. (Later I realised that the oracle db was infact fine and the problem was that the db user account that EVERYTHING was using password expired ^^). When i went to my website after the restart it gave me the "apache succussfully installed" default page. I saw on that page that for some reason the websites path on the harddrive has changed. It was /usr/local/apache2/htdocs but now after the restart its at /var/www/html. So to just went and copied everything from the old location to the new. My website worked again but php did not... It took me freaking forever to get apache+php+oracle db to play together nicely the first time so i wasnt very pleased :D. However after fidling abit more I saw that php pages ending with.php still worked but that apache was no longer parsing php scripts in html pages. Now i could not remember how I made apache parse html pages as php pages the first time but every site i googled states that i need to include either AddType application/x-httpd-php .html or AddHandler application/x-httpd-php .html in my .htacces. But this is not how got it to work the first time. Else those lines would stil be in my htacces file to begin with wich it is not. I have of course tried adding them in now but it doesnt work.

Is there any other way to get apache to parse html pages as if they were .php? Does things not working maybe have anything to do with my websites path changing? Anything else?

Thnx in Advance!
Advertisement
*snip*

Actually I'm not sure about that...

My first guess would also be AddHandler/AddType. Did you test it?
I think you rather added those directives to the httpd.conf for a certain directory instead of the .htaccess. That would explain why it isn't working anymore.
Typically you'll add the appropriate handler configurations in the VirtualSite section of the configuration, or the .htaccess file in the root of the source tree.
If you want everything to be PHP no matter what, then you can use <Location /> with a SetHandler directive.
http://httpd.apache.org/docs/2.2/mod/mod_mime.html#sethandler
enum Bool { True, False, FileNotFound };
Why would you write php server instructions to html documents you transmit. You would not, so defintely Apache compiles out php you have tagged out and runs only html string of document back, but before it does, it computes your php code and combines it with html constants you wrote. Placing executed server code in html you write is usefull for document building , but expect single runtime order. Maybe Apache needs to recompile, update data/ but it cannot becouse host account is obsolete. Bare in mind Apache was designed unhackable even if you are given free host.
Thnx for the suggestions. Il fiddle around some more.

This topic is closed to new replies.

Advertisement