Joachim Lodders: apache & php

Ich versuche in meine apche-datei httpd php einzubinden mit den Zeilen:
LoadModule php4_module c:/programme/php/sapi/php4apache.dll
AddType application/x-httpd-php .php

Aber apache stürzt jedesmal ab, schon bei der ersten Zeile.
Wie bekomme ich die Eimbindung von php4 in apache hin?

  1. hallo,

    Ich versuche in meine apche-datei httpd php einzubinden mit den Zeilen:
    LoadModule php4_module c:/programme/php/sapi/php4apache.dll

    bei mir steht es so:

    AddType application/x-httpd-php .php

    ScriptAlias /php4/ "C:/php/"
    Action application/x-httpd-php4 "/php4/php.exe"

    AddType application/x-httpd-php4 .php

    grüße
    thomas

    1. Hallo Thomas,

      Danke für Deine Nachricht, aber sie brachte bei mir keinen Erfolg.

      hallo,

      Ich versuche in meine apche-datei httpd php einzubinden mit den Zeilen:
      LoadModule php4_module c:/programme/php/sapi/php4apache.dll

      bei mir steht es so:

      AddType application/x-httpd-php .php

      ScriptAlias /php4/ "C:/php/"
      Action application/x-httpd-php4 "/php4/php.exe"

      AddType application/x-httpd-php4 .php

      grüße
      thomas

      1. Hallo Joachim,

        Danke für Deine Nachricht, aber sie brachte bei mir keinen Erfolg.

        hallo,

        LoadModule php4_module c:/programme/php/sapi/php4apache.dll

        bei mir steht diese zeile als letzte unter allen anderen LoadModule
        habe apache 1.3.12 und php4.0.4pl1  (win98)

        sonst, kann ich nicht mehr sagen.

        Grüße
        thomas

  2. Morgen Joachim,

    Aber apache stürzt jedesmal ab, schon bei der ersten Zeile.
    Wie bekomme ich die Eimbindung von php4 in apache hin?

    Nimm doch bitte mal das DOS-Prompt und such dein Apache Verzeichnis raus. Im Prompt gibt's du dann apache -t ein.So sieht es dann aus. <img src="http://www.dpsg-clemens.de/self_forum/apache_t.gif" border=0 alt="">
    Dann dürfte eine Fehlermeldung erscheinen, poste diese mal hier.

    gruesse
      jens mueller

  3. Ich versuche in meine apche-datei httpd php einzubinden mit den Zeilen:
    LoadModule php4_module c:/programme/php/sapi/php4apache.dll

    Moechtest Du denn wirklich php als _Modul_ so wie etwa _modPerl in den Apache einbinden? Dann kann ich Dir leider auch nicht helfen. Sollte es Dir aber reichen, via Apache den php-Interpreter aufzurufen, dann sollte Dein httpd.conf in etwa so aussehen:

    <-------------------snip--------------------------------------->

    # And for PHP 4.x, use:
        #
        AddType application/x-httpd-php .php
        AddType application/x-httpd-php-source .phps

    AddType application/x-tar .tgz

    #
        # AddHandler allows you to map certain file extensions to "handlers",
        # actions unrelated to filetype. These can be either built into the server
        # or added with the Action command (see below)
        #
        # If you want to use server side includes, or CGI outside
        # ScriptAliased directories, uncomment the following lines.
        #
        # To use CGI scripts:
        #
        AddHandler cgi-script .cgi
        AddHandler cgi-script .pl
        #
        # To use server-parsed HTML files
        #
        AddType text/html .shtml
        AddHandler server-parsed .shtml
        #php4
        Action application/x-httpd-php "/cgi-bin/php4.exe"

    <-----------------------------------snap--------------------->

    Funzt bei mir auf win95/98.

    Gruss Georg