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

时间:2014-08-18 16:12:16

标签: php xampp ubuntu-14.04 digital-ocean blocked

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

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

我有什么遗漏或是他们的错吗?

1 个答案:

答案 0 :(得分:1)

我发现了问题所在。

我必须启用错误才能看到发生了什么,显然我需要(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.');
}