Eu tento testar a minha instalação do php em um servidor ubuntu sem gui. Portanto, eu sigo o terceiro este tutorial para LAMP (!) . Isso inclui instalar o php5 et al. com
sudo apt-get install php5 libapache2-mod-php5 php5-mcrypt
Em seguida, 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.php
assim:
<?php
phpinfo();
?>
Não há saída, quando tento acessar a página em outra máquina com
http://hostname/info.php
index.html
mostra-me 'Funciona!' , mas /var/log/apache2/error.log
mostra 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 tentando acessar a página.
Saída do 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