Open paskuale75 opened 6 years ago
After reading issue #13 and opened http://myBackendSite/admin it return this : Invalid Configuration – yii\base\InvalidConfigException Object configuration must be an array containing a "class" element.
Seems to be here the problem:
'modules' => [
'admin' => [
'controllerMap' => [
'cms' => 'yii2mod\cms\controllers\CmsController',
],
]
]
If I add the class:
'modules' => [
'admin' => [
'class' => 'yii2mod\cms\Module',
'controllerMap' => [
'cms' => 'yii2mod\cms\controllers\CmsController',
],
]
]
it return me 403 Forbidden
It's possible to have a wiki for the installation of this extension on advanced yii app ? I'm a bit of confusion by reading the two issues # 13 and # 14 thanks