安装ionCube Loader

By | 2012年08月19日

今天在CentOS的LAMP下测试程序的时候会出现提示:Site error: the file /***/index.php requires the ionCube PHP Loader ioncube_loader_lin_5.2.so to be installed by the site administrator.

登录root帐号,先执行

uname -a

查看系统是32位还是64位,

64位的显示
Linux ps4 2.6.16.46-0.12-smp #1 SMP Thu May 17 14:00:09 UTC 2007 x86_64 x86_64 x86_64 GNU/Linux
后面显示有 x86_64

32位的显示:
Linux fc6 2.6.18-1.2798.fc6 #1 SMP Mon Oct 16 14:54:20 EDT 2006 i686 i686 i386 GNU/Linux

 

然后再打开http://www.ioncube.com/loaders.php

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

cd /usr/local

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

wget http://downloads2.ioncube.com/loader_downloads/ioncube_loaders_lin_x86.zip

再执行

tar zxvf ioncube_loaders_lin_x86.tar.gz

解压软件包。

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

[ionCube Loader]
zend_extension=”/usr/local/ioncube/ioncube_loader_lin_5.2.so”

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

2 thoughts on “安装ionCube Loader

发表评论

邮箱地址不会被公开。 必填项已用*标注