缺少数据表.后台手工补上吧
CREATE TABLE IF NOT EXISTS `qb_shop_mysort` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `pid` int(10) NOT NULL, `uid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '用户的UID', `name` varchar(80) NOT NULL COMMENT '分类名称', `list` int(10) NOT NULL, `logo` varchar(50) NOT NULL COMMENT '封面图', `ext_sys` smallint(4) NOT NULL COMMENT '扩展字段,关联的系统', `ext_id` mediumint(7) NOT NULL COMMENT '扩展字段,关联的系统ID', PRIMARY KEY (`id`), KEY `pid` (`pid`), KEY `list` (`list`), KEY `uid` (`uid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='用户自定义分类' AUTO_INCREMENT=1 ;
[10501] PDOException in Connection.php line 388
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'sjz_6cang_cn.qb_config' doesn't exist
$this->PDOStatement->execute();
// 调试结束
$this->debug(false);
// 返回结果集
return $this->getResult($pdo, $procedure);
} catch (\PDOException $e) {
if ($this->isBreak($e)) {
return $this->close()->query($sql, $bind, $master, $pdo);
}
throw new PDOException($e, $this->config, $this->getLastsql());
} catch (\Throwable $e) {
if ($this->isBreak($e)) {
return $this->close()->query($sql, $bind, $master, $pdo);
}
throw $e;
} catch (\Exception $e) {
if ($this->isBreak($e)) {
return $this->close()->query($sql, $bind, $master, $pdo);
}