Category Archives: PHP

WordPress设置代理

Leave a comment

WordPress因为各种原因放在国内服务器上经常无法远程更新、安装插件。通过下面方法设置代理就可以了。

/* 配置代理 */
define('WP_PROXY_HOST', '127.0.0.1');//代理服务器
define('WP_PROXY_PORT', '8118');//代理端口
define('WP_PROXY_USERNAME', '');//代理用户名
define('WP_PROXY_PASSWORD', '');//代理密码
define('WP_PROXY_BYPASS_HOSTS', 'localhost');//排除域名

[PHP]DirectAdmin PHP5.6安装swoole

Leave a comment

客户要求安装swoole,也不知道什么鬼用途。记一下笔记。

yum install gcc make autoconf pcre -y
cd ~
wget http://pecl.php.net/get/swoole-1.10.5.tgz
tar -zxvf swoole-1.10.5.tgz
cd swoole-1.10.5
export PHP_PREFIX="/usr/local"
$PHP_PREFIX/php56/bin/phpize
./configure --with-php-config=$PHP_PREFIX/php56/bin/php-config
make -j 2
make install

echo "extension=swoole.so" >> /usr/local/php56/lib/php.conf.d/20-custom.ini
service httpd restart
php -i | grep "swoole"

[Linux笔记]Directadmin安装XCache教程[适合SuPHP]

2 Comments

安装Directadmin一般会安装eAccelerator做PHP加速。但是最新版PHP所支持的eAccelerator0.9.6.x已经去掉cache功能,Discuz不支持使用。搜索了N多资料,找不到针对Directadmin安装XCache的教程,那就自己写一个吧。

cd /usr/local/src/
wget http://xcache.lighttpd.net/pub/Releases/2.0.1/xcache-2.0.1.tar.gz
tar -zxvf xcache-2.0.1.tar.gz
cd xcache-2.0.1
export PHP_PREFIX="/usr/local"
$PHP_PREFIX/php5/bin/phpize
./configure --enable-xcache -with-php-config=$PHP_PREFIX/php5/bin/php-config
make && make install

Continue reading