Home >php教程 >php手册 >Centos 6.5 安装 ionCube PHP Loader

Centos 6.5 安装 ionCube PHP Loader

WBOY
WBOYOriginal
2016-06-06 19:53:041426browse

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入 使用某些php的程序的时候会出现提示:Site error: the file /***/index.php requires the ionCube PHP Loader ioncube_loader_lin_5.2.so to be installed by the site administrator. 因为页面用ion

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入

    使用某些php的程序的时候会出现提示:Site error: the file /***/index.php requires the ionCube PHP Loader ioncube_loader_lin_5.2.so to be installed by the site administrator.

    因为页面用ioncube loader加密了

    首先,为了保险起见,登录root帐号,先执行

    uname -a

    查看系统是32位还是64位,然后再打开

    http://www.ioncube.com/loaders.php

    页面根据Linux是32位还是64位下载适当的软件包,比如我的是64位的,执行

    cd /usr/local

    切换到/usr/local/目录, 然后再下载选择的包

    wget http://downloads2.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.tar.gz

    再执行 tar zxvf ioncube_loaders_lin_x86-64.tar.gz 解压软件包

    修改/usr/local/lib/php.ini 在文件尾部添加如下代码:

    [ionCube Loader]

    zend_extension="/usr/local/ioncube/ioncube_loader_lin_5.2.so" (对应PHP版本是5.2)

    如果以前装有Zend Optimizer,安装ionCube会和Zend Optimizer发生冲突,不过在添加代码的时候,将上面的添加到zend之前就好了。

    最后重启web服务器

    /etc/init.d/httpd restart

Centos 6.5 安装 ionCube PHP Loader

Statement:
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