Blocked.com免费试用脚本显示空白页面


Blocked.com free trial script shows blank page

我要做的是:https://www.blocked.com/install.php

我在本地尝试了XAMPP和DigitalOcean上的LEMP和LAMP在Ubuntu 14.04上,所有这些都有相同的结果:步骤4显示一个空白页面。

是我遗漏了什么还是他们的错?

我找到问题所在了。

我必须启用错误来查看发生了什么,显然我需要(ed)在服务器上安装IonCube Loader。

//error_reporting(0); ini_set('display_errors', 0);
ini_set('display_errors',1);
ini_set('display_startup_errors',1);
error_reporting(-1);

此外,他们检查你是否有IonCube Loader在你的系统中使用后…是有意义的。

$version_ioncube = ioncube_loader_version();
Fatal error: Call to undefined function ioncube_loader_version() in /usr/share/nginx/html/blockscript/install.php on line 18

第33行:

# check if ionCube is installed
if (!function_exists('ioncube_loader_version')) {
    print_message('<b>Warning:</b> ionCube is not installed. ionCube is required to run the Blocked software. Please <a href="http://www.ioncube.com/loaders.php" target="_blank">download latest version of the ionCube Loaders</a> for your server. You can refer to the <a href="http://www.ioncube.com/loader_installation.php" target="_blank">ionCube Loader Installation Manual</a> for instructions and help.');
}