Heim  >  Artikel  >  Betrieb und Instandhaltung  >  Apache kann PHP nicht analysieren

Apache kann PHP nicht analysieren

王林
王林Original
2019-10-10 17:50:453223Durchsuche

Apache kann PHP nicht analysieren

Zuerst APACHE installieren

 ./configure --prefix=/usr/local/apache2 --enable-so --enable-module=so
 make
 make install

PHP installieren

./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache2/bin/apxs --with-config-file-path=/usr/local/lib 
--with-sybase=/opt/sybase/OCS-15_0/ --with-mysql --enable-dbase --enable-zip
 make
install

Installieren Führen Sie nach Abschluss von PHP den folgenden Code aus:

cp php.ini-dist /usr/local/lib/php.ini

Fügen Sie AddType application/x-httpd-php .php zur Konfigurationsdatei httpd.conf in APACHE hinzu, starten Sie APACHE neu und derselbe Fehler tritt immer noch auf.

Lösung:

  AddType application/x-httpd-php .php
  AddType application/x-httpd-php .php .phtml .php3
  AddType application/x-httpd-php-source .phps

Empfohlenes Tutorial: Apache-Tutorial

Das obige ist der detaillierte Inhalt vonApache kann PHP nicht analysieren. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:Wie starte ich Apache?Nächster Artikel:Wie starte ich Apache?