You are here: The ProductCart Encyclopedia » ProductCart User Guide » Manage Users: Adding New Control Panel Users
Manage Users: Adding New Control Panel Users
ProductCart allows the store administrator to add additional Control Panel users, each with access rights that can be limited to specific areas of the Control Panel.
For example, let’s assume that the store administrator needed help with processing online orders: he/she can now create a new Control Panel user whose access rights are limited to the “Manage Orders” area of the Control Panel.
Adding a new Control Panel user
To create a new Control Panel user, select Manage Users from the Settings menu. You will see a list of active users, excluding the store administrator. You can easily add, edit, or remove users. To add a new user, click on the Add New User button.
- Enter a User ID (numbers only)
- Enter a temporary password, which the user can later edit.
- Set the user's permissions. You can give the user access to one or more of several areas in which the Control Panel has been divided. When users log into the Control Panel, they are only shown the menu items that give access to the pages that are part of the permitted areas. In addition, every page in the Control Panel contains code that ensures that even if the user attempted to load a page by entering the page’s URL in the browser address field, they would be denied access to it if the page belongs to an area of the Control Panel for which they don’t have permissions. The user is instead automatically redirected to the Control Panel welcome page.
Technical Notes for Advanced Users
If for any reason you decide to customize the way the Control Panel works, modifying existing features or adding new ones, please note the following with regard to the feature described above:
- All ASP files included in the '/pcadmin' folder and its sub-folders should include the following code before all other include files:
<%PmAdmin=CODE_NUMBER%> <!--#include file="adminv.asp"-->
- The CODE_NUMBER should be one of the following:
0 = The file can be accessed by any Control Panel user 1 = ... only by users that have "Settings" permissions. 2 = ... only by users that have "Manage Products" permissions. 3 = ... only by users that have "Marketing" permissions. 4 = ... only by users that have "Shipping Options" permissions. 5 = ... only by users that have "Payment Options" permissions. 6 = ... only by users that have "Tax Options" permissions. 7 = ... only by users that have "Manage Customers" permissions. 8 = ... only by users that have "Manage Affiliates" permissions. 9 = ... only by users that have "Manage Orders" permissions. 10 = ... only by users that have "Manage Reports" permissions. 19 = ... only by the Store Administrator.