문제

I have done this

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

and then

sudo pecl install apc

But I'm getting this error:

                         ^
make: *** [apc_compile.lo] Error 1
ERROR: `make' failed

Do you have idea what can be issue? And how to solve it?

도움이 되었습니까?

해결책

Why do you install PHP over the package manager and APC over PECL?

apt-get install php-apc

is much easier and you get the correct package for APC.

다른 팁

Just an addition to the answer mentioned as correct. I got

Package 'php-apc' has no installation candidate

when tried to install with sudo apt-get install php-apc. So try sudo apt-get install php-apcu and use apcu instead of apc everywhere.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top