View Single Post
  #4  
Old 10th October 2013, 16:57
DND DND is offline
VIP
 
Join Date: Dec 2008
Posts: 1,242
Default
u have at the bottom of config, i believe, an array where u need to insert all the ids and names of the users in staff, higher or equal with UC_STAFF
i don't have V3 source running, but from what i remember you should be able to add staff ids from adminpanel.

of you could go to cache directory and edit staff_settings2.php

Code:
<?php
/**
 This file created on Feb 27 2012 00:35:47.
 Site Config staff mod by pdq/U-232.
 *
 */
$INSTALLER09['staff']['allowed'] = array(
    'Admin' => 1,
    'System' => 1
);
?>
just put the names eg. Yourname => 1

and then edit staff_settings.php from the same directory

Code:
<?php
/**
 This file created on Feb 27 2012 00:35:47.
 Site Config staff mod by pdq/U-232.
 *
 */
$INSTALLER09['allowed_staff']['id'] = array(
    1,
); ?>
and add the ids of the accounts you want to be staff

Last edited by DND; 10th October 2013 at 17:09.
Reply With Quote