yii2mod / yii2-comments

Comments module for Yii2
MIT License
158 stars 63 forks source link

404 - Create Comment Not Found #109

Open ahmadfadlydziljalal opened 2 years ago

ahmadfadlydziljalal commented 2 years ago
image

config\web.php

    'controllerMap' => [
        'comment' => [
            'class' => '\yii2mod\comments\controllers\ManageController',
            'accessControlConfig' => [
                'class' => 'yii\filters\AccessControl',
                'rules' => [
                    [
                        'allow' => true,
                        'roles' => ['super-admin'],
                    ],
                ],
            ]
        ],
    ],
    'modules' => [
        'comment' => [
            'class' => 'yii2mod\comments\Module',
        ],
    ],

view.php

image

rules at urlManager

image
ahmadfadlydziljalal commented 2 years ago

SOLVED