Plexus
Grünschnabel
hallo zusammen!
ich habe gröbere probleme bei der installation von php unter apache.
ich habe mich genau an die untenstehende installations-anleitunge gehalten, aber irgendwo liegt der hund begraben.
wenn ich aber eine datei mit phpinfo aufrufen will bekomme ich folgenden fehler
ich habe keine ahnung woran es liegt und wäre sehr dankbar wenn mir jemand helfen könnte.
ich habe einige tutorials gelesen und alle davon verlangen obige einstellungen. was mache ich bloß falsch.
ich habe mal meine httpd.conf vom apache angehängt angefügt. (hab's zwecks upload in eine text datei umbenannt.
thx,
Plexus
ich habe gröbere probleme bei der installation von php unter apache.
ich habe mich genau an die untenstehende installations-anleitunge gehalten, aber irgendwo liegt der hund begraben.
Code:
#
# 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:/Program Files/Apache Group/Apache/cgi-bin/"
You need to add another ScriptAlias line:
ScriptAlias /php/ "C:/php-4.2.1-win32/"
Now find a section that looks like this:
#
# AddType allows you to tweak mime.types without actually editing it, or to
# make certain files to be certain types.
#
AddType application/x-tar .tgz
This is the area where you say "for all files ending with [whatever], consider them to be of [whatever] type." Add these lines:
AddType application/x-httpd-php .phtml .php
AddType application/x-httpd-php-source .phps
If you want to create your own file extension for PHP files, like .joe (really, you can...), add .joe after the .phtml and .php in the first AddType line. If you want all .html files to be parsed as PHP, add it here as well.
One more modification...find a section like this:
#
# Action lets you define media types that will execute a script whenever
# a matching file is called. This eliminates the need for repeated URL
# pathnames for oft-used CGI file processors.
# Format: Action media/type /cgi-script/location
# Format: Action handler-name /cgi-script/location
#
You need to add an Action line for your new file types, so that they get sent through the PHP parser. Add this:
Action application/x-httpd-php /php/php.exe
wenn ich aber eine datei mit phpinfo aufrufen will bekomme ich folgenden fehler
Code:
Fehlermeldung:
Premature end of script headers: php.exe
ich habe keine ahnung woran es liegt und wäre sehr dankbar wenn mir jemand helfen könnte.
ich habe einige tutorials gelesen und alle davon verlangen obige einstellungen. was mache ich bloß falsch.
ich habe mal meine httpd.conf vom apache angehängt angefügt. (hab's zwecks upload in eine text datei umbenannt.
thx,
Plexus