Thread Installation und Konfiguration: Installation von Perl unter Windows (19 answers)
Opened by tiger at 2005-07-14 22:00

renee
 2005-07-15 20:20
#47153 #47153
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Mach mal aus:
Code: (dl )
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
Code: (dl )
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!
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread Installation und Konfiguration: Installation von Perl unter Windows