Hi,
I m new to drupal. I have to make a super admin and a admin in drupal project.Super admin is uid =1 which can access every thing while admin can only have permissions to delete a node, add a content type.'how should i do it.
Thanks,
Annu
Hi,
I m new to drupal. I have to make a super admin and a admin in drupal project.Super admin is uid =1 which can access every thing while admin can only have permissions to delete a node, add a content type.'how should i do it.
Thanks,
Annu
Comments
Comment #1
maartenvg commentedThe super admin is the first user you create, which is assigned super powers automatically when installing drupal, but has no special role. There can be only 1 true super-admin, although you could create a role that has all permissions. So you don't have to do anything special for that.
To create a normal admin, go to admin/user/roles to create a new role. Assign the permissions you want that role to have at admin/user/permissions (you'd want at least 'administer nodes' if I'm not mistaken). After that either create a new user at admin/user/user while checking the new role check box, or edit an existing user and assign the new role to him/her (at user/UID/edit).
That should solve your problem.