我在ubunto 14.04上使用opentbs版本1.9.4enter 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上尝试了相同的opentbs 1.9.4版本和php5.5.12,它是有效的。
我也在rhel-7.1戋hvm戋ga上尝试了与php5.4.16相同的opentbs版本1.9.4,它正在工作
最佳答案
据我所知,我在php上配置xcache,但它不起作用。当我试图在中从on移除xcache参数“xcache.cacher”时
xcache.ini文件
它起作用了。
xcache.cacher = Off
关于php - OpenTBS在使用PHP5.5.9的Ubuntu 14.04上不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32630307/