运行ZF1的站点链接到phpbb论坛 将phpbb从3.0.12更新为3.1.5(在3.0.12中没有此问题)
直接访问论坛时论坛运行正常。
然而,当通过框架访问它时
(例如,访问用户功能,如data['user_unread_privmsg']
)
我收到以下错误:
Call to undefined method Zend_Cache_Core::get() in /forum/phpbb/db/driver/mysqli.php on line 119
我通过使用xe-debug跟进了它,它停在以下函数:
/**
* {@inheritDoc}
*/
function sql_server_info($raw = false, $use_cache = true)
{
global $cache;
if (!$use_cache || empty($cache) || ($this->sql_server_version = $cache->get('mysqli_version')) === false)
{
$result = @mysqli_query($this->db_connect_id, 'SELECT VERSION() AS version');
if ($result !== null)
{
$row = @mysqli_fetch_assoc($result);
$this->sql_server_version = $row['version'];
if (!empty($cache) && $use_cache)
{
$cache->put('mysqli_version', $this->sql_server_version);
}
}
@mysqli_free_result($result);
}
return ($raw) ? $this->sql_server_version : 'MySQL(i) ' . $this->sql_server_version;
}
导致错误的确切行是以下
if (!$use_cache || empty($cache) || ($this->sql_server_version = $cache->get('mysqli_version')) === false)
我的ZF缓存设置(适用于其他缓存项)看起来像这样
$cachedir = APPLICATION_PATH . '/public/tmp/cache';
if (!is_dir($cachedir)) {
mkdir($cachedir, 0755, true); // make directory if it doesn't exist
}
$frontendOptions = array(
'lifetime' => 600,
'automatic_serialization' => true
);
$backendOptions = array(
'cache_dir' => $cachedir
);
// getting a Zend_Cache_Core object
$cache = Zend_Cache::factory('Core', 'File', $frontendOptions, $backendOptions);
Zend_Registry::set("cache", $cache);
Zend_Db_Table_Abstract::setDefaultMetadataCache($cache);
$cache = Zend_Cache::factory('Core', 'APC', $frontendOptions);
Zend_Registry::set("apc_cache", $cache);
有关如何解决此问题的任何想法?
(我删除了旧缓存,将tmp / cache权限设置为777等)
答案 0 :(得分:1)
phpBB在全局范围内使用$ cache变量(使用global $cache
将其导入函数范围)。它应该是phpBB缓存类的一个实例,而不是Zend_Cache_Core
类。
有效地,通过分配:
$cache = Zend_Cache::factory('Core', 'File', $frontendOptions, $backendOptions);
你覆盖了这里设置的全局变量:https://github.com/phpbb/phpbb/blob/3.1.x/phpBB/includes/compatibility_globals.php并且一切都爆炸了。
phpBB3并不擅长与其他脚本一起包含并共享相同的范围和内存。它最近变得更好了(正如你所看到的,链接的文件被称为兼容性),但你仍然必须小心并谨慎编码。