相关软件包资料下载

How to Install & compile Zend Guard Loader

How to Install & compile Zend Guard Loader

The Zend Guard Loader runs PHP scripts that are encoded with Zend Guard. The Zend Guard Loader is a PHP extension that runs outputs created by  Zend Guard, which provides an easy way to encode, obfuscate and license  PHP code via an Eclipse-based interface or from the command line.
The Guard Loader extension must be installed on each Web server that  runs files that were encoded with, or use, Zend Guard licenses.

Quote:

Note:
You can also use the Zend Optimizer that also includes the Guard Loader  extension for code written in PHP 5.2. The Zend Optimizer is available  as a free download from PHP Web Application Server - PHP Development tools - PHP Training - Zend.com.

The Zend Guard Loader translates encoded files to a format that  can be parsed by the Zend Engine. This runtime process uses the Zend  engine as a trigger to start the Zend Guard Loader component. Zend Guard is a separate product available from Zend that provides an easy way to  encode, obfuscate and license PHP code via an Eclipse-based interface or from the command line. To view the API, click Zend Guard Loader.
To install it you need to follow the below mentioned steps:

Quote:

# wget http://downloads.zend.com/guard/5.5....23-i386.tar.gz
# tar -zxvf ZendGuardLoader-php-5.3-linux-glibc23-i386.tar.gz
# cp ZendGuardLoader-php-5.3-linux-glibc23-i386/php-5.3.x/ZendGuardLoader.so to /usr/local/lib/php

Now after that open php.ini file and put a

Quote:

zend_optimizer.optimization_level=15
zend_extension=/usr/local/lib/php/ZendGuardLoader.so

restart apache
php -v to check it will show as

Quote:

# php -v
PHP 5.3.8 (cli) (built: Oct 5 2011 18:13:49)
Copyright (c) 1997-2011 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2011 Zend Technologies
with Zend Guard Loader v3.3, Copyright (c) 1998-2010, by Zend Technologies

Thats it Done
Thanks and regards

+++++++++++++++++++++++++++++++++++++++++++++++++++

php-zend-guard-loader-5.5.0-3.el6.art.x86_64.rpm php-zend-guard-loader-5.5.0-3.el6.art.i686.rpm

http://hohoqi.blog.163.com/blog/static/10795561201181221249991/

由于Zend新产品ZendGuardLoader的面世,Zend Optimizer已经不支持php5.3了,官方给出的版本是ZendGuardLoader代替,ZendGuardLoader的安装还是和原版差不多的:

64位的ZendGuardLoader

wget -c http://live.utoptoy.com/ZendGuardLoader-php-5.3-linux-glibc23-x86_64.tar.gz

tar zxvf ZendGuardLoader-php-5.3-linux-glibc23-x86_64.tar.gz

cd ZendGuardLoader-php-5.3-linux-glibc23-x86_64/

mkdir -p /usr/local/zend/

cp php-5.3.x/ZendGuardLoader.so /usr/local/zend/

下文的 php.ini 文件根据实际情况修改成你服务器上的路径

cat >>/usr/local/php/etc/php.ini<<eof div="" <="">

[Zend Guard Loader]

zend_extension="/usr/local/zend/ZendGuardLoader.so"

EOF

#结束后重启lnmpa

/root/lnmpa restart

在phpinfo 里能看到

This program makes use of the Zend Scripting Language Engine:
Zend Engine v2.3.0, Copyright (c) 1998-2011 Zend Technologies
    with eAccelerator v0.9.6.1, Copyright (c) 2004-2010 eAccelerator, by eAccelerator
    with Zend Guard Loader v3.3, Copyright (c) 1998-2010, by Zend Technologies

出现 Zend Guard Loader v3.3  则说明安装成功。

BTW, 32位的ZendGuardLoader

wget -c http://downloads.zend.com/guard/5.5.0/ZendGuardLoader-php-5.3-linux-glibc23-i386.tar.gz

ZEND 官方网站上下载是要求登录的。如果上面的脚本下载不了,则登陆ZEND官网去下载。

That's all, THX.

+++++++++++++++++++++++++++++++++++++++++++++
CentOS安装php加速软件Zend Guardhttp://www.mouyao.com/archives/1928.html

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

关闭SELINUX
vi /etc/selinux/config
#SELINUX=enforcing       #注释掉
#SELINUXTYPE=targeted    #注释掉
SELINUX=disabled         #增加
:wq  保存,关闭
shutdown -r now   #重启系统
1、下载Zend Guardcd /home
wget http://downloads.zend.com/guard/5.5.0/ZendGuardLoader-php-5.3-linux-glibc23-i386.tar.gz    #32位
wget http://downloads.zend.com/guard/5.5.0/ZendGuardLoader-php-5.3-linux-glibc23-x86_64.tar.gz  #64位
2、安装Zend Guard
mkdir /usr/zend       #建立Zend Guard安装目录
tar xvfz ZendGuardLoader-php-5.3-linux-glibc23-i386.tar.gz    #解压安装文件
cp ZendGuardLoader-php-5.3-linux-glibc23-i386/php-5.3.x/ZendGuardLoader.so     /usr/zend/   #拷贝文件到安装目录
rm -rf /home/ZendGuardLoader-php-5.3-linux-glibc23-i386*   #删除安装包

3、配置Zend Guard
cp  /etc/php.ini    /etc/php.inibak   #修改之前先备份
vi /etc/php.ini    #编辑文件
在最后位置添加以下内容
[Zend Guard]
zend_extension=/usr/zend/ZendGuardLoader.so
zend_loader.enable=1
zend_loader.disable_licensing=0
zend_loader.obfuscation_level_support=3
zend_loader.license_path=

4、重启web服务器
/etc/init.d/httpd restart
至此,Zend Guard安装完成。

+++++++++++++++++++++++++++++++++++++++++++++

RHEL6 下 LAMP配置 php5.3.6支持Zend Guard问题
http://zhidao.baidu.com/question/299490544.html

按照网上的教程 下载了 ZendGuardLoader-php-5.3-linux-glibc23-i386.tar.gz和php-5.3.6.tar.gz 配置完成后 php是正常的 现在我要配置 zend的 mkdir -p /usr/local/zend mv ZendGuardLoader.so /usr/local/zend/ vi /usr/local/php/lib/php.ini 然后在php.ini 最后我也加入了 [zend] zend_optimizer_optimization_level=15 zend_extension=/usr/local/zend/ZendGuardLoader.so 但phpinfo(); 中 还是没有出现 zend的信息 请问这是怎么回事  还需要修改什么参数  请高手帮忙~~~~~~~

老兄让我来告诉你吧 我已经试验成功了  问题在编译httpd的时候  --with-mpm=prefork 这个必须这样设定 否则导致zend3.3.9 或 ZendGuardLoader无法加载

转载于:https://blog.51cto.com/lookingdream/1862002

PHP5.3下加速器ZendGuardLoader安装及故障处理相关推荐

  1. iis/apache + php5 + mysql5_Windows下IIS6/Apache2.2.4+MySQL5.2+PHP5.2.6安装配置方法

    首先安装Apache, 下载地址: http://www.apache.org/ 如果你是第一次安装就一直下一步不要进地设什么不必要的设置,运行一定会ok! 接下来就是安装php了, 下载地址: ht ...

  2. php5.3安装memcache,Windows下的Memcache安装 附php5.3的扩展

    Windows下的Memcache安装: 1. 下载memcache的windows稳定版,解压放某个盘下面,比如在c:\memcached 2. 在终端(也即cmd命令界面)下输入 'c:\memc ...

  3. php5.3+for+linux,Centos 安装 nginx + php5.3

    Centos 安装 nginx + php5.3,点开查看详情. #查看系统版本信息cat /etc/issue uname -a#设置时区 rm -rf /etc/localtime ln -s / ...

  4. Linux下EasyPanel版本安装及升级

    Linux下EasyPanel版本安装及升级 本脚本为官方脚本,集成了kangle web服务器和mysql,仅支持centos 5和centos 6. 执行下面的命令即可,安装程序将自动安装或者升级 ...

  5. php5.5.33 源码安装,Linux PHP5.3升级PHP5.5.33

    由于要使用了laravel5.1,php要升级到5.5以上.具体环境是Aliyun Cent OS 7.0. 首先网上这类的文章非常多,每个人的升级目的,要升级的组件都不完全一样.最好的说明文档还是官 ...

  6. centos6.x 安装php5.6 tar,CentOS6.x安装php5.6.x

    一.系统及安装说明 系统:CentOS6.x_x64,php5.6.12版本以及四个扩展模块(libmcrypt-2.5.8.tar.gz ;php-redis.tar.gz;jpegsrc.v8d. ...

  7. 安装php5、卸载php、安装php7的教程

    首先安装php5很简单  yum install php  然后如果不想用php5的话那就卸载吧 注意只使用yum remove命令是行不通的  那我们先  yum remove php  然后你需要 ...

  8. Windows下Memcache的安装及PHP扩展配置方法

    这篇文章主要介绍了Windows下Memcache的安装及PHP扩展配置方法,需要的朋友可以参考下 一.下载 找到完整的memcache的Windows安装包,解压放在硬盘上,比如 F:\memcac ...

  9. Android 开发之Windows环境下Android Studio安装和使用教程(图文详细步骤)

    鉴于谷歌最新推出的Android Studio备受开发者的推崇,所以也跟着体验一下. 一.介绍Android Studio  Android Studio 是一个Android开发环境,基于Intel ...

最新文章

  1. 零基础学oracle pdf_零基础学动漫插画详细步骤大全
  2. 哒螨灵使用注意事项_杀螨最优组合,老的、少的、没出生的,都管用
  3. 透过【百度地图API】分析双闭包问题
  4. php怎么解决雪崩或穿透,Redis之缓存击穿、穿透、雪崩、预热,以及如何解决?...
  5. cocos2dx 圆盘抽奖_cocoscreator之微信小游戏的抽奖转盘
  6. oracle数据库中的系统自带表情_Oracle数据库自带表空间的详细说明
  7. 【181214】VC++动画翻页效果的电话簿程序源代码
  8. 【PHPWord】PHPWord导出PDF格式文件的几种方式以及最优解并附代码
  9. 【STM32】 STM32单片机IO引脚配置方式
  10. DIRECTSHOW中的视频捕捉
  11. 高并发系统中库存热点的解决方案
  12. 公差基本偏差代号_基本偏差代号怎么确定
  13. 骨传导耳机听歌音质怎么样、公认音质好的骨传导耳机排名
  14. 基于ug的框架断路器抽屉座运动仿真
  15. Java中使用es条件构造器BoolQueryBuilder
  16. 软件测试工程师面试一般常见问题汇总
  17. 手机lte 网络信息测试软件,5G常见测试软件及单验案例
  18. 【BPM架构】BPM 平台:独立还是微服务实现
  19. 生成县域级年GDP统计图
  20. office2016资源文件以及安装教程

热门文章

  1. tornado和subprocess实现程序的非堵塞异步处理
  2. 转豆瓣--梁海棠尽管死了,但却占领了陈少杰的身心。乔燕尽管还…
  3. Oauth协议是否会泄露用户的密码
  4. 编写Android的LKM(Linux Kernel Module)
  5. java jetty的classpath_java代码启动jetty
  6. zkcli远程连接_ZooKeeper客户端 zkCli.sh 节点的增删改查
  7. 32怎么通过一个按键实现不同工作模式_stm32几种低功耗模式的实现和差别
  8. Java学习系列(十九)Java面向对象之数据库编程
  9. JavaScript权威指南笔记 - 1
  10. 主题:spring集成quartz,出现2次重复调用的问题