PHP não está sendo executado no Apache ARM

0

Eu instalei o Ubuntu em um preto Beaglebone.

  apache2 -v
  Server version: Apache/2.4.18 (Ubuntu)
  Server built:   2016-04-15T18:00:57

  php -v
  PHP 7.0.4-7ubuntu2 (cli) ( NTS )
  Copyright (c) 1997-2016 The PHP Group
  Zend Engine v3.0.0, Copyright (c) 1998-2016 Zend Technologies
  with Zend OPcache v7.0.6-dev, Copyright (c) 1999-2016, by Zend Technologies

Eu vejo que esta é a versão CLI, então eu acho que não é usado para HTTP?

Seguindo as postagens do blog, ele diz para instalar o php5, mas quando eu tento isso eu recebo "no install candidate", mas quando obtenho uma versão do php, eu acho que isso não importa?

Eu adicionei o PPA via sudo add-apt-repository ppa:ondrej/php e tentei instalar o PHP5

sudo apt-get install php5 libapache2-mod-php5
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package libapache2-mod-php5 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

Package php5 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'php5' has no installation candidate
E: Package 'libapache2-mod-php5' has no installation candidate

Eu criei um arquivo chamado info.php e adicionei a linha, mas quando a executo, ela imprime <?php phpinfo() ?> na tela (tentei tags curtas também). O arquivo reside em /var/www/html .

    
por maxum 14.05.2016 / 22:54

1 resposta

0

Embora sudo apt-get install php5 tenha falhado sudo apt-get install php5.6 trabalhado e agora o php esteja funcionando.

    
por maxum 15.05.2016 / 03:08