Module In YII

Hi All,

I have created a module from gii tools named “manager”. I want to use this modules as admin tool for various tasks. I have create a model in this modules “staticPages”. A table created with id, page_name, page_body fields and modal class is associated with it. Then I created a curd section from gii tool for this model. I can add/edit/delete the static_pages entry but when I click on “manage static pages” link (grid view of all entries), it shows me 403 error (not authorized). URL of this page is manager/staticPages/admin. Could you please tell me where I’ve been mistaken or forgot any settings. I have added ‘manager’ module entry in main configuration file.

Please Help.

Kind Regards

Hi,

Perhaps you are using the default user demo, created with the application.

Did you tried to log in as the admin user?

Regards,

Either try logging in using admin user.

OR

If you are not much worried about authentication and access rights, comment out filters() & accessRules() methods from controller.

OR

You could modify the accessRules() method to get a blend of access rights and allow the particular action you need to do without any authentication.