Erro PHP-APC por favor ajude

0

Estou tentando instalar o php-apc plugin e estou recebendo um erro.

sudo apt-get install php-pear php5-dev libpcre3-dev

Reading package lists... Done
Building dependency tree
Reading state information... Done
Package php5-dev 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
However the following packages replace it:
  php5-json

E: Package 'php5-dev' has no installation candidate

sudo pecl install apc

downloading APC-3.1.13.tgz ...
Starting to download APC-3.1.13.tgz (171,591 bytes)
.....................................done: 171,591 bytes
55 source files, building
running: phpize
sh: 1: phpize: not found
ERROR: 'phpize' failed

Não é de admirar o que está causando isso? Eu tentei googling phpize erro e mais coisas sobre isso, nada me ajudou,.

PHP INFO: link

    
por WolfGaming Admin 03.06.2016 / 22:42

2 respostas

1

Para corrigir seu problema, você precisa instalar os pacotes para php7.0 , para que seu comando de instalação seja:

sudo apt-get install php-pear php-dev php-json libpcre3-dev php-apcu
    
por Videonauth 03.06.2016 / 22:55
1

você pode corrigir o problema instalando este arquivo de compatibilidade pure php apcu:

de link

isto irá emular a função apcu_ * com a função apc_ * (e vice-versa)

    
por SegFault 08.06.2016 / 19:31