2015
04.30
04.30
Due to some nasty bugs in PHP 5.3.2 we needed to update our Ubuntu 10.04 machines to 5.3.10 (still nasty, but better). This is how we accomplished that:
Remove the current APC version:
sudo pecl uninstall apc;
Add the brianmercer/php5 PPA repository:
sudo apt-get install python-software-properties; sudo apt-add-repository ppa:brianmercer/php5; sudo apt-get update; sudo apt-get upgrade;
Reinstall APC:
sudo pecl install apc;
No Comment.
Add Your Comment