Wie kann ich meine PHP-Installation reparieren?

Wie kann ich meine PHP-Installation reparieren?

Ich versuche meine PHP-Installation auf einem Ubuntu-Server ohne GUI zu testen. Dazu folge ich dem 3.dieses Howto für LAMP(!). Dazu gehört die Installation von php5 ua mit

sudo apt-get install php5 libapache2-mod-php5 php5-mcrypt

Anschließend wird PHP zum Verzeichnisindex hinzugefügt.

sudo nano /etc/apache2/mods-enabled/dir.conf

Die Datei sieht also wie folgt aus:

<IfModule mod_dir.c>
          DirectoryIndex index.php index.html index.cgi index.pl index.php index.xhtml index.htm
</IfModule>

Bei mir ist die Datei /var/www/info.phpso:

<?php 
phpinfo();
?>

Es erfolgt keine Ausgabe, wenn ich versuche, die Seite auf einem anderen Rechner zu erreichen mit

http://hostname/info.php 

index.htmlzeigt mir'Es klappt!', zeigt aber /var/log/apache2/error.logeinen Fehler an:

[..date..] [mpm_prefork:notice] [pid 13057] AH00163: Apache/2.4.6 (Ubuntu) SVN/1.7.9 PHP/5.5.3-1ubuntu2.1 mod_perl/2.0.8 Perl/v5.14.2 configured -- resuming normal operations
[..date..] [core:notice] [pid 13057] AH00094: Command line: '/usr/sbin/apache2'
[..date..] [:error] [pid 13064] [client 192.168.x.n:59821] PHP Parse error:  syntax error, unexpected '<' in /var/www/info.php on line 3
[..date..] [:error] [pid 13065] [client 192.168.x.n:59822] script '/var/www/index.php' not found or unable to stat

x und n sind Zahlen, n ist die IP des Clients, der versucht, auf die Seite zuzugreifen.

Ausgabe von cat /var/www/info.php

<?php
<h3 align="center">"Awesomeness has no charge" - Po the Panda</h3> <-- here is the error...ok, thx.
phpinfo();
?>

Und

$ ls -la /var/www/info.php
-rw-r--r-- 1 root root 86 Feb  1 23:33 /var/www/info.php

Antwort1

Der Fehler lag in info.php:

<?php
<h3 align="center">"Awesomeness has no charge" - Po the Panda</h3> <-- here is the    error...ok, thx.
phpinfo();
?>

Durch Löschen der Zeile mit

<h3 align="center">"Awesomeness has no charge" - Po the Panda</h3>

alles ist wie erwartet. Die info.php ist jetzt (wie in vielen Dokumentationen...)

<?php
phpinfo();
?>

verwandte Informationen