PHP 5.3.2 APC Centos Conundrum

So the PHP 5.3.2 is not in the default repository for Centos.

So we need to use the webtatic repository to install php 5.3.2 using the guide from here ->

http://www.webtatic.com/blog/2009/06/php-530-on-centos-5/

Fortunately, if you wanted to also run the APC module, this has already been compiled for us, we just need to enable it in the php.ini file like this ->

extension = apc.so
apc.enabled=1
apc.shm_size=30

Restart apache

/etc/init.d/httpd restart

and then check in phpinfo() that the module has been installed.

Comments are closed.