Hallo,
habe die Verzeichnisgeschichte verstanden.
Jetzt habe ich ein konkretes Problem.
Habe Apache installiert und in der httpd.conf an den beiden Stellen, wo cgi-bin vorkommt fplgende Änderungen vorgenommen:
# ScriptAlias /cgi-bin/ "C:/XAMPP/cgi-bin/" <====== alt
ScriptAlias /cgi-bin/ "C:/XAMPP/htdocs/cgi-bin/"
</IfModule>
"C:/XAMPP/cgi-bin" should be changed to whatever your ScriptAliased
CGI directory exists, if you have that configured.
<Directory "C:/XAMPP/cgi-bin"> <====== alt
<Directory "C:/XAMPP/htdocs/cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
Wenn ich jetzt ein Script in cgi-bin aufrufe, kommt der Fehler:
[error][client 127.0.0.1]attempt to invoke directoy as script: c:/XAMPP/htdocs/cgi-bin/
Hoffentlich kann mir jemand weiterhelfen