ubuntu下编译安装xcache for php5.3 的具体操作步骤_php技巧

WBOY
Release: 2016-05-17 09:00:47
Original
1474 people have browsed it

wget http://xcache.lighttpd.net/pub/Releases/1.3.0/xcache-1.3.0.tar.gz
sudo tar -xzvf  xcache-1.3.0.tar.gz

cd  xcache-1.3.0

sudo /usr/local/php-5.3.3/bin/phpize
sudo ./configure --with-php-config=/usr/local/php-5.3.3/bin/php-config

sudo make
sudo make install

sudo cat xcache.ini >> /usr/local/php-5.3.3/lib/php.ini [如果权限还不够的话,就切换到root]

配置php.ini
;author:zhxia
[xcache-common]
;; install as zend extension (recommended), normally "$extension_dir/xcache.so"
;zend_extension = /usr/local/lib/php/extensions/non-debug-non-zts-xxx/xcache.so
; zend_extension_ts = /usr/local/lib/php/extensions/non-debug-zts-xxx/xcache.so
;开启下面行也可以
;zend_extension=/usr/local/php-5.3.3/lib/php/extensions/no-debug-non-zts-20090626/xcache.so
;; For windows users, replace xcache.so with php_xcache.dll
;zend_extension_ts = c:/php/extensions/php_xcache.dll
;; or install as extension, make sure your extension_dir setting is correct
;这行开启也可以,均能够添加xcache模块,修改只有记得重启fpm
extension = xcache.so
;; or win32:
; extension = php_xcache.dll

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template