OpenTBS没有使用PHP5.5.9在Ubuntu 14.04上运行

时间:2015-09-17 12:27:25

标签: php linux ubuntu-14.04 lamp opentbs

在Ubunto 14.04上使用openTBS版本1.9.4 enter link description here和PHP5.5.9。当我使用这个应用程序时,我发现了问题出现的地方。

// Include classes
include_once('tbs_class.php'); // Load the TinyButStrong template engine
include_once('../tbs_plugin_opentbs.php'); // Load the OpenTBS plugin

// prevent from a PHP configuration problem when using mktime() and date()
if (version_compare(PHP_VERSION,'5.1.0')>=0) {
    if (ini_get('date.timezone')=='') {
        date_default_timezone_set('UTC');
    }
}

// Initialize the TBS instance
$TBS = new clsTinyButStrong; // new instance of TBS

我在创建实例TBS时遇到问题,并在Chrome浏览器上抛出以下错误。

No data received

ERR_EMPTY_RESPONSE

但我在WAMP2.5上使用PHP5.5.12尝试了相同的openTBS版本1.9.4,它正在运行。 我还在RHEL-7.1_HVM_GA上使用PHP5.4.16尝试了相同的openTBS版本1.9.4,它正在工作

1 个答案:

答案 0 :(得分:1)

据我所知,我在php上配置xcache并且它无法正常工作。当我尝试在

中将xcache参数“xcache.cacher”从On移到Off时
  

xcache.ini

它正在发挥作用。

xcache.cacher =               Off