|< 1 2 3 >| | 22 Einträge, 3 Seiten |
Quotenun habe ich ja deas verzeichnis cgi-bin in apachefriends\xampp\cgi-bin (Standard)
allerdings habe ich der site auch ein verzeichnis cgi-data
ich habe versucht die *.pl datei in beide verzeichnisse zu verlinken, teilweise wird sie mir auch angezeigt, aber:
mit shebang und \n
und das ist wohl nicht sinn der sache.
Ich weiss nicht wo hier der Fehler liegt.
Quoteim Standardverzeichnis befindet sich die Datei: perltest.cgi
wenn ich diese mit :http://localhost/cgi-bin/perltest.cgi aufrufe wird sie ausgeführt!
aber nicht wenn ich sie aus einer html-seite verlinke...???
zb. http://www.localhost/websites/www.meineseite.de/unterseite.html
und hier auf den link perltest.cgi klicke...???
woran liegt das?
<a href="http://localhost/cgi-bin/perltest.cgi">Link</a>
<a href="http://localhost/cgi-bin/perltest.cgi">Link</a>
<a href="http://www.meineseite.de/cgi-bin/script.pl">script</a>
include conf/php.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
##### Installing PHP4
#
#
LoadFile C:/php/php4ts.dll
LoadModule php4_module C:/php/sapi/php4apache2.dll
#####################################################################
#
# PHP 4
#
AddType application/x-httpd-php .php .php4 .phtml
AddType application/x-httpd-php-source .phps
<Filesmatch ".*\.(php4?|phtml)$">
ForceType application/x-httpd-php
</Filesmatch>
DirectoryIndex index.phtml index.php index.php4
<Ifmodule mod_php4.c>
php_admin_flag log_errors on
php_admin_value error_log logs/php4_err.log
</Ifmodule>
<Ifmodule !mod_php4.c>
# mod_php4 not loaded, use php4 as cgi
ScriptAlias /php4/ C:/php/
Action application/x-httpd-php /php4/php.exe
</Ifmodule>
#
#
#######################################################################
############## End of php.conf
|< 1 2 3 >| | 22 Einträge, 3 Seiten |