Eu faço uma nova instalação de componentes LAMP no Ubuntu.
As seguintes instalações são feitas
apt-get install php
apt-get install php-mysql
apt-get install mysql-server
apt-get install apache2
apt-get install libapache2-mod-php7.0
apt-get install dolibarr
apt-get install php7.0 php5.6 php5.6-mysql php-gettext php5.6-mbstring php-xdebug libapache2-mod-php5.6 libapache2-mod-php7.0
apt-get install python-software-properties pkg-config software-properties-common
Quando eu acesso <MyIP>/dolibarr/htdocs
, recebo o código PHP exibido e não executado.
Quando eu acesso <MyIP>/test.php
, obtenho o código PHP abaixo executado e informações do PHP exibidas:
<?php
phpinfo();
?>
Este test.php e o Dolibarr são colocados em /var/www
O diretório raiz do Apache está definido em /etc/apache2/sites-enabled/000-default.conf
da seguinte forma:
<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
#ServerName www.example.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www
Como queria ter certeza de que a versão do PHP não estava implícita, tentei este tuto e swiched entre PHP 7.0 e PHP 5.6.
Estou preso aqui.
Alguma ideia, por favor pessoal?