Mach mal aus:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#
# ScriptAlias: This controls which directories contain server scripts.
# ScriptAliases are essentially the same as Aliases, except that
# documents in the realname directory are treated as applications and
# run by the server when requested rather than as documents sent to the client.
# The same rules about trailing "/" apply to ScriptAlias directives as to
# Alias.
#
ScriptAlias /cgi-bin/ "C:/Programme/Apache2/Apache2/cgi-bin/"
#
# "C:/Programme/Apache2/Apache2/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
#
<Directory "C:/Programme/Apache2/Apache2/cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
das hier
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#
# ScriptAlias: This controls which directories contain server scripts.
# ScriptAliases are essentially the same as Aliases, except that
# documents in the realname directory are treated as applications and
# run by the server when requested rather than as documents sent to the client.
# The same rules about trailing "/" apply to ScriptAlias directives as to
# Alias.
#
ScriptAlias /cgi-bin/ "C:/Programme/Apache2/Apache2/cgi-bin/"
#
# "C:/Programme/Apache2/Apache2/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
#
<Directory "C:/Programme/Apache2/Apache2/cgi-bin">
ScriptInterpreterSource script
# oder mal ScriptInterpreterSource registry
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
Dann musst Du in Deinen Skripten (und den Beispielskripten) in der Shebang den korrekten Pfad zu perl angeben. Probier's einfach mal aus, ich kann's nicht testen!