2012-07-09 67 views
0

我正在做我的CakePHP項目的管理部分。我已成功創建登錄註銷模塊。現在我正在創建一個名爲「用戶組」的模塊,其中列出了不同的用戶組。爲此,我製作了一個GroupsController.php文件。但是,當我加載網址爲localhost/testblog /組,我得到這個錯誤:羣組控制器無法找到

Error: GroupsController could not be found. 

Error: Create the class GroupsController below in file: 

管理\控制器\ GroupsController.php

<?php 
class GroupsController extends AppController { 
} 

Notice: If you want to customize this error message, create admin\View\Errors\missing_controller.ctp 

請誰能告訴我該如何解決?我搜查了很多,但無法得到它。

+0

我按照約定的CakePHP的,也把GroupsController.php文件下的本地主機/ testblog /管理/控制/目錄.. – keyur0517 2012-07-09 09:58:20

回答

0

您的文件名應該是groups_controller.php

相關問題