Using NMS 1.01 and CMSMS 1.0.4
When clicking an email list, I get an error message saying:
"Error! Access Denied. Please check your permissions."
The error occurs only when logged in as my collegues admin account. No error message is displayed when logged in with the original admin account.
Any suggestion what could be the problem?
NMS - Permission error when clicking email list
NMS - Permission error when clicking email list
Last edited by RazorMedia on Thu Jun 28, 2007 7:43 am, edited 1 time in total.
Re: NMS - Permission error when clicking email list
Check group of your collegues admin account. Is it admin?RazorMedia wrote: Using NMS 1.01 and CMSMS 1.0.4
When clicking an email list, I get an error message saying:
"Error! Access Denied. Please check your permissions."
The error occurs only when logged in as my collegues admin account. No error message is displayed when logged in with the original admin account.
Any suggestion what could be the problem?
Alby
Re: NMS - Permission error when clicking email list
Sure it is.Check group of your collegues admin account. Is it admin?
Re: NMS - Permission error when clicking email list
If link of email list is: http://xxxxx/admin/moduleinterface.php? ... ]edit_list[/b],xxxxxxxxxxRazorMedia wrote: When clicking an email list, I get an error message saying:
"Error! Access Denied. Please check your permissions."
Then in action.edit_list.php there is ($this->Lang('accessdenied') is your error):
Check permission Modify NMS Listsif (!$this->CheckPermission('Modify NMS Lists'))
{
$this->_DisplayErrorPage($id, $params, $returnid,
$this->Lang('accessdenied'));
return;
}
Alby
Re: NMS - Permission error when clicking email list
So, your suggestion is to check the permissions?Check permission Modify NMS Lists
The mystery is that we´re both administrators, but it seems we don´t share the same permissions. At least when it comes to email lists in NMS.
Re: NMS - Permission error when clicking email list
RazorMedia wrote:So, your suggestion is to check the permissions?Check permission Modify NMS Lists
The mystery is that we´re both administrators, but it seems we don´t share the same permissions. At least when it comes to email lists in NMS.


Check in db, with phpmyadmin, both administrators
Alby
Re: NMS - Permission error when clicking email list
HELLO,
I have the same problem, my version is 1.0.8 e NMS version is the last one
do have any solution
UPDATE
I try this!
It´s wrong?
if (!$this->CheckPermission('Modify NMS Lists'))
{
//$this->_DisplayErrorPage($id, $params, $returnid,
// $this->Lang('accessdenied'));
//return;
}
I have the same problem, my version is 1.0.8 e NMS version is the last one
do have any solution
UPDATE
I try this!
It´s wrong?
if (!$this->CheckPermission('Modify NMS Lists'))
{
//$this->_DisplayErrorPage($id, $params, $returnid,
// $this->Lang('accessdenied'));
//return;
}
Last edited by nuno on Fri Jun 29, 2007 8:32 pm, edited 1 time in total.
Re: NMS - Permission error when clicking email list
I had to manually add "Use NMS" into database as a possible permission. Then I set the Admin to have this permission.
For some reason, there is some old code left that checks to see of you have "Use NMS" permission. There may be another... I think it is "Modify NMS Lists"...
Here are the available permissions I have listed for admin:
Manage NMS Jobs
Manage NMS Lists
Manage NMS Messages
Manage NMS Users
Use NMS
Modify NMS Lists
For some reason, there is some old code left that checks to see of you have "Use NMS" permission. There may be another... I think it is "Modify NMS Lists"...
Here are the available permissions I have listed for admin:
Manage NMS Jobs
Manage NMS Lists
Manage NMS Messages
Manage NMS Users
Use NMS
Modify NMS Lists