Permission for "Logs" and "Other"
insanetek 0
From: -
From: -
Notice
This topic is archived. New comments cannot be posted and votes cannot be cast.Responses to this topic
1 Re: Permission for "Logs" and "Other"
Philipp
From: Vienna, Austria
Administrator
1340From: Vienna, Austria
Permission for "Logs" and "Other"
To display the menu only to a second admin, you could replace in cadmin/index.php the following:
with (replace XX with the user ID of the second admin):
To display the menu only to a second admin, you could replace in cadmin/index.php the following:
if ($admin[user_id] == 1)
{
with (replace XX with the user ID of the second admin):
if ($admin[user_id] == 1 or $admin[user_id] == XX)
{
1 Re: Permission for "Logs" and "Other"
insanetek
OP
0
From: -
From: -
Permission for "Logs" and "Other"
I'm back. Is there a way to have more than one admin to see "Logs" and "Other" but not every admin?
I'm back. Is there a way to have more than one admin to see "Logs" and "Other" but not every admin?
1 Re: Permission for "Logs" and "Other"
insanetek
OP
0
From: -
From: -
Permission for "Logs" and "Other"
Thanks!
Thanks!
1 Re: Permission for "Logs" and "Other"
Philipp
From: Vienna, Austria
Administrator
1340From: Vienna, Austria
Permission for "Logs" and "Other"
Here a workaround to remove this restriction. Open cadmin/index.php in an editor and search for "$admin[user_id] == 1" and replace with "$admin[user_id]".
Here a workaround to remove this restriction. Open cadmin/index.php in an editor and search for "$admin[user_id] == 1" and replace with "$admin[user_id]".
1 Re: Permission for "Logs" and "Other"
insanetek
OP
0
From: -
From: -
Permission for "Logs" and "Other"
So there is no way to give those permissions to a uid=2 admin? My other admin needs to be able to update the "Announcement".
So there is no way to give those permissions to a uid=2 admin? My other admin needs to be able to update the "Announcement".
1 Re: Permission for "Logs" and "Other"
Philipp
From: Vienna, Austria
Administrator
1340From: Vienna, Austria
Permission for "Logs" and "Other"
Only the first admin (with user id #1) have all permissions, similar to the root/admin account on a Unix box.
Only the first admin (with user id #1) have all permissions, similar to the root/admin account on a Unix box.
I have another administrator who can't see the "Logs" and "Other" categories in the admin cp. I checked the db manually and I didn't see anything that I could change. How can I give him permission?