05-11-2017, 07:34 PM
$master_account is an array that was omitted from a few versions of Userspice but has been recently readded. You can edit your init.php file to add it in. Any account ID's in the array will have access to all pages, regardless of their permissions. From my init.php:
// Set Time Zone string
$timezone_string="America/Los_Angeles";
date_default_timezone_set($timezone_string);
// Adding more ids to this array allows people to access everything, whether offline or not. Use caution.
$master_account = [1];
I don't think it matters quite where in the file you place it, but mine is after the timezone.
// Set Time Zone string
$timezone_string="America/Los_Angeles";
date_default_timezone_set($timezone_string);
// Adding more ids to this array allows people to access everything, whether offline or not. Use caution.
$master_account = [1];
I don't think it matters quite where in the file you place it, but mine is after the timezone.