Hi,
Im using debian 5, Apache 2.2.15, Php 5.3.2..
How should I install xcache:
or
Im using debian 5, Apache 2.2.15, Php 5.3.2..
How should I install xcache:
Code:
[URL="http://xcache.lighttpd.net/wiki/XcacheRedist"]apt-get install php5-xcache[/URL]
or
Code:
[URL="http://xcache.lighttpd.net/wiki/InstallFromSource"]~/src $ wget http://... (the release url)
~/src $ tar -zxf xcache-*.tar.gz
~/src $ cd xcache
~/src/xcache $ phpize
~/src/xcache $ ./configure --enable-xcache
~/src/xcache $ make
~/src/xcache $ su
~/src/xcache # make install
~/src/xcache # cat xcache.ini >> /etc/php.ini
(it's two > not one)
(now edit /etc/php.ini with your favorite editor)
~/src/xcache # $EDITOR /etc/php.ini
(make sure zend_extension=../../xcache.so is the first before any other zend_extension=***)
[/URL]