0

我正在尝试在 cake 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

朋友们请帮我为 cake php 框架安装 vqmod,因为我无法通过谷歌找到任何帮助。

4

1 回答 1

0

我真的不知道 vqmod 是什么...但是如果您没有 vqmod 表,那么这将解决您的问题-

class VqmodController extends AppController {

 var $name = 'Vqmod';
public $uses = array();
 }
于 2014-04-14T13:43:44.293 回答