Thread: Project U-232
View Single Post
  #154  
Old 15th October 2011, 12:22
Bigjoos's Avatar
Bigjoos Bigjoos is offline
U-232 Dev
 
Join Date: May 2008
United Kingdom
Posts: 244
Default
So you add a new value to the array :

PHP Code:
//== Add ALL staff names before you promote them 
$INSTALLER09['staff']['allowed'] = array( 'System'    => 1,
/* your new additions */                                        
'newname'     => 1,
'newname'     => 1,
'newname'     => 1,
/* duplicate above */ 
'Admin'     => 1); 
Only adding :

PHP Code:
'newname'     => 1
After the comma on previous name, if last name in array no comma is used as per example.

Staff userid array :

PHP Code:
//==Add all your Staff ids
$INSTALLER09['allowed_staff']['id'] = array(1,2); 


By default Admin and Systems userids are added to allow you to install.

Staff userid's must be added before you promote them on site otherwise they will be disabled and demoted, add them in following format :

PHP Code:
1,2,3,5,8
Im sure you can work it out now : )
The Following 3 Users Say Thank You to Bigjoos For This Useful Post:
daffy (19th October 2011), wellqfk (20th October 2011), x360zone (7th November 2011)