At 01:20 PM 07/05/2001 +0530, you wrote:
>Hi All
>
>Today I installed Indigo Perl on my system and when I tried the sample
>code which came along with the installation to test mod_perl it gave an
>error as "Page not found"
>
>I checked the following before posting
>a) I found that the file exists
>b) path in the html page is also correct.
>c) Apache which came along with the installation is running and displays
> "Apache/1.3.19 (Win32) mod_perl/1.24_01 running..."
>d) When I tried checking the $ENV if 'MOD_PERL' exist but failed ....
Hi, Joel!
Since you are mentioning Win32, I could assume you are running Apache in a
Windows box. I have a similar problem but in a Linux box, and was solved
adding/editing httpd.conf with the following lines (not sure if it works
the same way in Windows, but it may give you a hint):
ScriptAlias /cgi-bin/ /home/httpd/cgi-bin/
#this tells where the script files will be. Important for the next step
AddHandler cgi-script .cgi
AddHandler cgi-script .pl
#tells which extensions will be "read" as scripts instead of just text files.
#of course, I am asuming that the scripts will be placed in cgi-bin
>Can you all help me in the following
As for the rest, sorry, I don't have that knowledge, yet...