...and in turn using cgi script in a cgi-bin located in htdocs? I need to know what you are using on your script to point to perl. #!C:\xampp\perl\bin\perl.exe is what I am using and for some reason it does not work.
Is anyone here using xampp
Collapse
X
-
Is anyone here using xampp
When you're running down my country hoss...you're walking on the fighting side of me!
FOR THE LYING LOWLIFE POSTING AS PATHFINDER...http://gfy.com/fucking-around-and-pr...athfinder.htmlTags: None -
Anyone...When you're running down my country hoss...you're walking on the fighting side of me!
FOR THE LYING LOWLIFE POSTING AS PATHFINDER...http://gfy.com/fucking-around-and-pr...athfinder.html -
On httpd.conf:
ScriptAlias /cgi-bin/ "C:/xampp/cgi-bin/"
<Directory "C:/xampp/cgi-bin">
AllowOverride All
Options Indexes FollowSymLinks ExecCGI
Order allow,deny
Allow from all
</Directory>
On script:
#!"C:/xampp/perl/bin/perl.exe"
Restart apache and run localhost/cgi-bin/script.pl
Anyway, get a linux box to run apache, xampp is buggy.Comment
-
Thanks for the input. On script...are the quotes required?On httpd.conf:
ScriptAlias /cgi-bin/ "C:/xampp/cgi-bin/"
<Directory "C:/xampp/cgi-bin">
AllowOverride All
Options Indexes FollowSymLinks ExecCGI
Order allow,deny
Allow from all
</Directory>
On script:
#!"C:/xampp/perl/bin/perl.exe"
Restart apache and run localhost/cgi-bin/script.pl
Anyway, get a linux box to run apache, xampp is buggy.When you're running down my country hoss...you're walking on the fighting side of me!
FOR THE LYING LOWLIFE POSTING AS PATHFINDER...http://gfy.com/fucking-around-and-pr...athfinder.htmlComment
-
When you're running down my country hoss...you're walking on the fighting side of me!
FOR THE LYING LOWLIFE POSTING AS PATHFINDER...http://gfy.com/fucking-around-and-pr...athfinder.htmlComment
-
I an now getting a 403 error.
You don't have permission to access the requested object. It is either read-protected or not readable by the server.When you're running down my country hoss...you're walking on the fighting side of me!
FOR THE LYING LOWLIFE POSTING AS PATHFINDER...http://gfy.com/fucking-around-and-pr...athfinder.htmlComment
-

Comment