Web Hosting Talk







View Full Version : runnnin issue with test.html


stephenn
09-17-2002, 03:54 PM
I am trying to run .hhtml

I did these includes on my httpd.conf , but still doesn't work.



AddType text/html .shtml
AddHandler server-parsed .shtml

Here is my test .html file

<!--#include virtual="/cgi-bin/testing.pl" -->




Thanks

diederik
09-17-2002, 03:59 PM
Try renaming it to test.shtml

stephenn
09-17-2002, 04:25 PM
I want to try .html, it should work.

Thansk

SPaReK
09-17-2002, 05:19 PM
Change it so that it reads:


AddType text/html .shtml .html
AddHandler server-parsed .shtml .html

This will allow you to parse SSI through .shtml files and .html files. You might also read up on the xBitHack directive for Apache. I've never used it, but I've had client use it before.