APC Install help

brendanb

Verified User
Joined
Jun 29, 2009
Messages
23
Hi,

i have a fresh DA install on a x64 centos 5.3 box

Ive looked in the forums for the steps to install the APC cache and have found this.
My question is are the correct steps to install APC?
see thread: http://www.directadmin.com/forum/showthread.php?t=29113&highlight=apc

Code:
/usr/local/bin/phpize
./configure --enable-apc --enable-apc-mmap --with-apxs --with-php-config=/usr/local/bin/php-config
make clean
make
make install

thanks
brendan
 
the above solution worked
but also needed to install autoconf
Code:
yum install autoconf
 
I get this:


Code:
 echo "extension=apc.so" > /etc/php.d/apc.ini
-bash: /etc/php.d/apc.ini: No such file or directory


??
 
Back
Top