如果我给 本地主机/ YII /框架/博客/ index.php的/
它会显示出来 系统无法找到请求的操作" index"。
如果我点击主页链接转到 localhost / yii / framework / blogs / index.php / post / index
并显示错误
表" {{post}}"对于活跃的唱片班" Post"在数据库中找不到。
答案 0 :(得分:0)
此错误显示连接的数据库中没有表格帖子。
如果表存在,则检查配置为main.php的表前缀。数据库中没有使用前缀,删除main.php中的tablPrefix
'db'=>array(
'connectionString' => 'xxxxx',
'username' => 'xxxxx',
'password' => 'xxxxx',
'tablePrefix' => 'tbl_',
),