如何在cPanel中安装ionCube Loader

时间:2019-05-29 14:47:44  来源:igfitidea点击:

IonCube是用于PHP应用程序的加密/解密工具,通过它我们可以保护我们的数据安全。
它还可以限制PHP应用程序未经授权执行。
它还有助于加速所服务的页面。
当运行在web服务器上时,IonCube加载器用于解码已编码的文件。

本教程将无需在cPanel服务器上重新编译Apache/PHP即可在cPanel服务器上安装IonCube Loaders。

在cPanel上安装IonCube Loaders

要安装ioncube,首先使用root访问ssh客户端(例如Putty)连接到服务器,并执行以下命令。

#   /scripts/phpextensionmgr install IonCubeLoader 

这个脚本将安装ionCube加载程序并完成所有必需的设置。
下面是上述命令的示例输出

Updating md5sum list
Fetching http://httpupdate.cpanel.net/cpanelsync/easy/targz.yaml (connected:0).......(request attempt 1/12)...Using dns cache file /root/.HttpRequest/httpupdate.cpanel.net......searching for mirrors (mirror search attempt 1/3)......loaded mirror speeds from cache......mirror search success......connecting to Hyman@theitroad00%......request success......Done
Installing IonCubeLoader
Determining PHP version
Installing IonCube Loader binaries
Activating IonCube Loader extension in /usr/local/lib/php.ini
IonCube Loader extension activated

验证IonCube Loader

在安装了ionCube Loader之后,我们可以通过Linux命令行使用下面的命令来验证它

$ php -v
<pre>
Sample Output
<pre class=pretty>PHP 5.4.24 (cli) (built: Jan 26 2014 21:51:18)
Copyright (c) 1997-2013 The PHP Group
Zend Engine v2.4.0, Copyright (c) 1998-2013 Zend Technologies
    with the ionCube PHP Loader v4.4.1, Copyright (c) 2002-2013, by ionCube Ltd.

或者我们也可以创建一个小的PHP脚本(info.php)。

<?php
    phpinfo();
?>

现在在web浏览器中访问创建的PHP脚本 http://服务器ip/info.php,我们将发现在PHP安装中启用了ionCube加载程序。