yii2-cms icon indicating copy to clipboard operation
yii2-cms copied to clipboard

wiki for yii2 advanced app installation

Open paskuale75 opened this issue 7 years ago • 1 comments

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

paskuale75 avatar Mar 28 '18 08:03 paskuale75

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

paskuale75 avatar Mar 28 '18 08:03 paskuale75