我正试图在蛋糕php框架中安装vqmod。我简单地将vqmod文件夹上传到根目录,并创建了一个带有以下代码的控制器文件,并将该文件放置在/app/controllers中。
class VqmodController extends AppController { var $name = 'Vqmod'; }我收到以下错误
Missing Database Table
Error: Database table vqmods for model Vqmod was not found.
Notice: If you want to customize this error message, create app\views\errors\missing_table.ctp朋友们请帮助我安装vqmod为蛋糕php框架,因为我找不到任何帮助通过谷歌。
发布于 2014-04-14 13:43:44
我真的不知道什么是vqmod ..。但如果你没有vqmod的桌子,这就解决了你的问题-
class VqmodController extends AppController {
var $name = 'Vqmod';
public $uses = array();
}https://stackoverflow.com/questions/23061670
复制相似问题