Hans: Ftp übers Internet

Beitrag lesen

mhh.. bin zwar kein verfechter von MS-Webserver, aber sooo unsicher ist er sicherlich nicht... so jetzt gehts mir besser ;)

ach ja: was mach ich falsch? mein Apache startet php nicht!!

hab folgendes eingetragen:

httpd.conf:

And for PHP 4.x, use:

AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
Action application/x-httpd-php /php/php.exe

php liegt in %apacheroot%/php/php.exe

thx TOM

also ich habe folgendes in der httpd.conf (unter win:)

AddType application/x-tar .tgz

ScriptAlias /php4/ "c:/php4/"
AddType application/x-httpd-php .php
AddType application/x-httpd-php .php3
AddType application/x-httpd-php .php4
AddType application/x-httpd-php .phtml
Action application/x-httpd-php "/php4/php.exe"

und unter linux: (als mod_php)

# http://www.php.net) will typically use:
    #
    <IfModule mod_php3.c>
    AddType application/x-httpd-php3 .php3
    AddType application/x-httpd-php3-source .phps
    AddType application/x-httpd-php3 .phtml
    </IfModule>
    #
    # And for PHP 4.x, use:
    #
    <IfModule mod_php4.c>
    AddType application/x-httpd-php .php
    AddType application/x-httpd-php .phtml
    AddType application/x-httpd-php .php3
    AddType application/x-httpd-php .php4
    AddType application/x-httpd-php-source .phps
    </IfModule>

#

vielleicht hilfts?