我想创建简单的多模式phalcon项目,但即使使用模块也无法工作
我刚刚按照以下步骤操作:
1:创建项目:phalcon项目mod --type = moudles
2:启用Webtools:phalcon webtools --action = enable
3:使用webtools创建简单的scafoold
我的项目只有一个带有前端名称的模块。
但是当我打开控制器网址时,我遇到了这个问题:
( ! ) Fatal error: Class 'ControllerBase' not found in C:\wamp\www\mod\apps\frontend\controllers\AdminmenuController.php on line 7
Call Stack
# Time Memory Function Location
1 0.0171 245464 {main}( ) ..\index.php:0
2 0.0289 262960 handle ( ) ..\index.php:30
3 0.0482 305744 dispatch ( ) ..\index.php:30
4 0.0482 306528 spl_autoload_call ( ) ..\index.php:0
5 0.0482 306640 autoLoad ( ) ..\index.php:0
6 0.0490 362624 Phalcon\Loader->autoLoad( ) ..\index.php:0
答案 0 :(得分:0)
这是Phalcon开发工具的一个问题。我没有它,因此无法给出确切的指示。但是,您可以做的是找到名为BaseController
的类。您的Controller
类正在尝试从中扩展,并且命名空间或位置不匹配。