Search found 2 matches

by bvbmedia
Tue Jul 29, 2014 8:43 am
Forum: General Help and Development Discussion
Topic: Yum update error
Replies: 15
Views: 34154

Re: Yum update error

The following command won't help much:
yum update atomic-release

You have to bypass Yum by installing the latest version like this:
wget -q -O - https://www.atomicorp.com/installers/atomic | sh
by bvbmedia
Wed Oct 27, 2010 5:51 pm
Forum: PHP Help and Discussion
Topic: php-pecl-apc cli challenges
Replies: 7
Views: 16985

Re: php-pecl-apc cli challenges

To get it working quickly I recommend to remove php-pecl-apc by running: yum remove php-pecl-apc -y Then install APC through Pecl itself by running: pecl install apc Don't forget to tune the settings by editing apc.ini: vi /etc/php.d/apc.ini Example settings that we use: extension=apc.so apc.enabled...