码迷,mamicode.com
首页 > Web开发 > 详细

CentOS安装php加速软件Zend Optimizer 3.3.9(转)

时间:2015-02-10 11:09:52      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:

(尚未验证)

PHP5.3以上的版本不再支持Zend Optimizer,已经被全新的 Zend Guard Loader 取代,下面是安装Zend Guard具体步骤,以下操作均在终端命令行执行

1、下载Zend Guardcd /home

1.  wget http://downloads.zend.com/guard/5.5.0/ZendGuardLoader-php-5.3-linux-glibc23-i386.tar.gz    #32位 
2.  wget http://downloads.zend.com/guard/5.5.0/ZendGuardLoader-php-5.3-linux-glibc23-x86_64.tar.gz  #64位  

2、安装Zend Guard

1.  mkdir /usr/zend       #建立Zend Guard安装目录 
2.  tar xvfz ZendGuardLoader-php-5.3-linux-glibc23-i386.tar.gz    #解压安装文件 
3.  cp ZendGuardLoader-php-5.3-linux-glibc23-i386/php-5.3.x/ZendGuardLoader.so     /usr/zend/   #拷贝文件到安装目录 
4.  rm -rf /home/ZendGuardLoader-php-5.3-linux-glibc23-i386*   #删除安装包  

3、配置Zend Guard

       cp  /etc/php.ini    /etc/php.inibak   #修改之前先备份

       vi /etc/php.ini    #编辑文件

       在最后位置添加以下内容

1.  [Zend Guard] 
2.  zend_extension=/usr/zend/ZendGuardLoader.so 
3.  zend_loader.enable=1 
4.  zend_loader.disable_licensing=0 
5.  zend_loader.obfuscation_level_support=3 
6.  zend_loader.license_path=  

4、重启web服务器

       /etc/init.d/httpd restart

至此,Zend Guard安装完成。

CentOS安装php加速软件Zend Optimizer 3.3.9(转)

标签:

原文地址:http://www.cnblogs.com/xihong2014/p/4283149.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!