Setting admin password
To set your Imagevue
Admin password, open the file
passwords.php in notepad, and locate the line:
//$data['admin_password_here'] = '*';
Simply set your own unique password where it says
admin_password_here, and remove the double slash // to enable it. Example:
$data['bubblegum321'] = '*';
Creating passwords for multiple users
You can create multiple passwords at user-specified levels for the Imagevue admin. For instance, you can give 1 user full access while other users can be restricted to an imagefolder or an entire groupfolder.
Admin permissions
The
* permission gives full access:
$data['password'] = '*';
Folder level permissions
The
folder level permission limits a users operations within a certain subfolder.
Example:
$data['password'] = 'content/summer07/';
Guest permissions
The
guest permission gives access to browse the admin, but is not permitted to do any operations.
$data['password'] = 'guest';
Multiple password example
In the example below, we have modified passwords.php to include a variety of passwords with different permissions:
$data['zebra37'] = '*';
$data['borat'] = 'guest';
$data['george'] = 'content/';
$data['funcat'] = 'content/holidays/';
$data['blueberry'] = 'content/holidays/singapore/';
zebra37
This password has non-restricted global admin permissions.
$data['zebra37'] = '*';
borat
This password will allow access to browse the admin area, but user will
not be able to create descriptions, upload- or delete files.
$data['borat'] = 'guest';
george
This password will allow file operations strictly in folders under the
content/ folder.
$data['george'] = 'content/';
funcat
This password will allow file operations strictly in imagefolders under the
content/holidays/ groupfolder.
$data['funcat'] = 'content/holidays/';
blueberry
This password will allow file operations strictly in imagefolder
content/holidays/singapore/.
$data['blueberry'] = 'content/holidays/singapore/';