![]() |
problem parsing html as php with .htaccess - Printable Version +- ispCP - Board - Support (http://www.isp-control.net/forum) +-- Forum: ispCP Omega Support Area (/forum-30.html) +--- Forum: Usage (/forum-34.html) +--- Thread: problem parsing html as php with .htaccess (/thread-5430.html) |
problem parsing html as php with .htaccess - HarryPW - 01-14-2009 08:16 PM I'm using a CMS witch save all the files as a .html document Normally I put a .htaccess file in the root with: AddType application/x-httpd-php .php .htm .html or AddHandler php-fastcgi .html and use my own error404 document from the CMS with: ErrorDocument 404 /error404.html but this all doesn't work under ispCP. Anyone a suggestion or a solution Thanx Harry RE: problem parsing html as php with .htaccess - BeNe - 01-14-2009 08:50 PM Quote:Anyone a suggestion or a solutionAny Apache (Error) Logs ? Greez BeNe RE: problem parsing html as php with .htaccess - HarryPW - 01-14-2009 09:18 PM No errors today in the Apache log concerning php or htaccess (only about ispCP and Horde) This is the .htaccess file I want to use RemoveHandler .html .htm AddType application/x-httpd-php .php .htm .html ErrorDocument 404 /error404.html I also changed AddType application/x-httpd-php .php .htm .html into AddHandler php-fastcgi .html still didn't work. It looks like a .htaccess file can't be used in the domainroot. WR Harry RE: problem parsing html as php with .htaccess - jdubs11 - 01-20-2010 11:44 PM (01-14-2009 09:18 PM)HarryPW Wrote: No errors today in the Apache log concerning php or htaccess (only about ispCP and Horde) Is there a resolution to this? The company that I lease my server from just recently upgraded to ispCP and now I cannot render any .html files as PHP. They indicated that a change would need to be made to php.ini since the .htaccess method I had been using would no longer work since PHP was no longer being run as a module. When asked what needed to be updated in php.ini, they responded w/ an 'I don't know, try adding AddHandler php-fastcgi .html to .htaccess'. This did not work for me either. Please help. RE: problem parsing html as php with .htaccess - kilburn - 01-21-2010 02:36 AM First of all, you have to determine if your server is using FastCGI or Fcgid, because the configurations differ between them. Under fastcgi As long as .htacces is allowed to override FileInfo settings (AllowOverride +FileInfo or AllowOverride All), you can force files with .ext1 [.ext2 [...]] extensions to be run as a php script with: Code: # Enable php for another extension Similarly, you can... Code: # Disable php in this folder and it's childs (unles re-enabled by another .htaccess) Under fcgid You're out of luck, as the default configuration doesn't allow you to do this (at least I've been unable to). Now, I enabled this possibility by following these steps: 1. Replace the "<IfModule mod_fcgid.c>....</IfModule>" block from the files /etc/ispcp/apache2/parts/{als,dmn,sub}_php2_entry.tpl by the following one: Code: <IfModule mod_fcgid.c> 2. Regenerate domain configurations and restart apache. 3. Insert the following in your .htaccess: Code: # Enable php for html-files Similarly, you can... Code: # Disable php in this folder and it's childs (unles re-enabled by another .htaccess) Using mod_rewrite Obviously, you can also try to use mod_rewrite instead: Code: RewriteEngine On And then rename all your files to .php instead of .htm(l)... Hope this helped. RE: problem parsing html as php with .htaccess - jdubs11 - 01-21-2010 03:04 AM (01-21-2010 02:36 AM)kilburn Wrote: Under fcgid Ok, it appears I have been setup w/ fcgi. To confirm what you're saying, the block in the xyx_php2_entry.tpl files looks like this currently Code: <IfModule mod_fcgid.c> All of that should be replaced w/ what you indicated above? RE: problem parsing html as php with .htaccess - kilburn - 01-21-2010 03:39 AM Right, the whole block should be replaced ![]() RE: problem parsing html as php with .htaccess - jdubs11 - 01-21-2010 04:17 AM (01-21-2010 03:39 AM)kilburn Wrote: Right, the whole block should be replaced you rock. only thing I noticed now is that I have to sniff the page in order for it to start compiling, is there a work around for this? really not a big deal as its now working and there aren't too many pages to do this for but wanted to check before going down that road. thanks again! RE: problem parsing html as php with .htaccess - kilburn - 01-21-2010 04:43 AM Sorry but I don't understand you... what do you mean by "sniff the page"? ... and what's this compiling stuff (php is interpreted, as you surely know)? RE: problem parsing html as php with .htaccess - jdubs11 - 01-21-2010 04:49 AM (01-21-2010 04:43 AM)kilburn Wrote: Sorry but I don't understand you... what do you mean by "sniff the page"? ... and what's this compiling stuff (php is interpreted, as you surely know)? sorry, compiling was a bad choice of words (java developer by day). pages were not rendering php until I made an update to them (just deleted a space for instance). Is this just a caching issue w/ fcgi? either way, I think I can just use touch to update the timestamp. thanks again for your help. |