how to run perl in xampp windows
-
Hi, This is my cgi-bin folder D:\www\xampp\cgi-bin the shebang is like this #!"D:/www/xampp/perl/bin/perl.exe" and perl is in the folder like in the above path of shebang here is my script alias entry in httpd.conf ScriptAlias /cgi-bin/ "D:/www/xampp/cgi-bin/" and the directory entry is as follows <Directory "D:/www/xampp/cgi-bin"> AllowOverride All Options Indexes FollowSymLinks ExecCGI Order allow,deny Allow from all </Directory> my file is printenv.pl and is saved in cgi-bin folder but still i couldn't make the file run i call it like localhost/printenv.pl i get 404 error. what shall i do?
Today's Beautiful Moments are Tomorrow's Beautiful Memories
-
Hi, This is my cgi-bin folder D:\www\xampp\cgi-bin the shebang is like this #!"D:/www/xampp/perl/bin/perl.exe" and perl is in the folder like in the above path of shebang here is my script alias entry in httpd.conf ScriptAlias /cgi-bin/ "D:/www/xampp/cgi-bin/" and the directory entry is as follows <Directory "D:/www/xampp/cgi-bin"> AllowOverride All Options Indexes FollowSymLinks ExecCGI Order allow,deny Allow from all </Directory> my file is printenv.pl and is saved in cgi-bin folder but still i couldn't make the file run i call it like localhost/printenv.pl i get 404 error. what shall i do?
Today's Beautiful Moments are Tomorrow's Beautiful Memories
-
"i call it like localhost/printenv.pl" But, you should call it like this: localhost/cgi-bin/printenv.pl
-