我很无聊,我备份了网站,我尝试重新发布,但我有一个php错误...
PHP致命错误:调用未定义的方法DB_Error :: getAll()
检查我的代码:
//renvoi toutes les lignes
public function getAll($p_Req)
{
global $db;
return $db->getAll($p_Req);
}
我已重新安装php 5.2.17 pear 1.9.1和DB包1.7.14
这是这个网站的良好配置,我不接触代码,我不明白为什么它不起作用。
请帮忙
答案 0 :(得分:1)
由于某种原因,您已在$ db变量中实例化而不是PEAR:DB类,但PEAR:DB_Error
您需要重新检查$ db变量的来源。