Apache server konfiguration

Hallo Mitglieder,ich bitte Sie um Hilfe. Ich habe Apache2.2 unter Windows xp installiert. Der erste Test mit dem Browser unter der Angabe des Servernames „localhorst“ hat gut funktioniert. Dann habe ich das PHP installiert. Aber wenn ich die Konfigurationsdatei "httpd.conf " konfigurieren um zu erreichen, dass der Apacheserver mit der PHP zusammenarbeiten, indem ich in die Datei LoadModule php5_module „c:/PHP/php5apache2_2.dll“, „AddType Applikation/x-httpd-php .php“, und schließlich „PHPIniDir „C:/PHP““ einfügen, startet der Apache Server nicht mehr. Ich möchte deshalb wissen, wo ich falsch gemacht habe. Danke schön im Voraus.Mit freundlichen Grüßen.Masse

Hallo,

die Frage zu beantworten ist nicht ganz so tribial, deswegen verweise ich auf eine Standard-Konfiguration, welche dann individuell angepasst werden kann.

APACHE Konfig:

# httpd.conf für Apache 2.0.50
# Einsatzplattform Windows

ServerRoot "D:/Apache"
PidFile logs/httpd.pid
Timeout 300
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 15

ThreadsPerChild 250
MaxRequestsPerChild 0

Listen 80

Include "D:/Apache/conf/module.conf"

ServerAdmin [email protected]
ServerName Rechnername
DefaultType text/plain
ErrorLog logs/error.log
LogLevel warn
LogFormat "%h %l %u %t \"%r\" %\>s %b" common
CustomLog logs/access.log common

ServerTokens Full
ServerSignature On
AddDefaultCharset ISO-8859-1

DocumentRoot "D:/www/server1"
\<Directory /\>
 Options FollowSymLinks
 AllowOverride None
\</Directory\>
\<Directory "D:/www/server1"\>
 Options Indexes FollowSymLinks
 AllowOverride None
 Order allow,deny
 Allow from all
 AddOutputFilter INCLUDES .shtml .shtm
\</Directory\>

DirectoryIndex index.htm index.html index.shtml index.shtm index.cgi index.php

ScriptAlias /cgi-bin/ "D:/www/server1/cgi-bin/"
\<Directory "I:/cgi-bin"\>
 AllowOverride None
 Options Indexes FollowSymLinks ExecCGI
 Order allow,deny
 Allow from all
\</Directory\>

ScriptAlias /php/ "D:/php/"

\<Location /server-status\>
 SetHandler server-status
 Order deny,allow
 Deny from all
 Allow from 192.168
\</Location\>
\<Location /server-info\>
 SetHandler server-info
 Order deny,allow
 Deny from all
 Allow from 192.168
\</Location\>

Include "D:/Apache/conf/mime.conf"
Include "D:/Apache/conf/autoindex.conf"

nähere Informationen hierzu kann man unter den folgenden link nachlesen:

http://aktuell.de.selfhtml.org/artikel/server/apacheconf/apconf09.htm

mfg

Peter Hartmann