Como posso reparar minha instalação do PHP?

Como posso reparar minha instalação do PHP?

Tento testar minha instalação do php em um servidor Ubuntu sem GUI. Portanto eu sigo o 3ºeste tutorial para LAMP (!). Isso inclui a instalação do php5 et al. com

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

Então o PHP é adicionado ao índice do diretório.

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

Para que o arquivo seja:

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

Eu tenho o arquivo /var/www/info.phpassim:

<?php 
phpinfo();
?>

Não há saída quando tento acessar a página em outra máquina com

http://hostname/info.php 

index.htmlme mostra'Funciona!', mas /var/log/apache2/error.logmostra erro:

[..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 e n são números, n é o ip do cliente que está tentando acessar a página.

Saída de cat /var/www/info.php

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

E

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

Responder1

O erro estava em info.php:

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

Ao excluir a linha com

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

tudo está como esperado. O info.php é agora (como em muitas documentações..)

<?php
phpinfo();
?>

informação relacionada