The plugin redirect everybody, including admin. Not working for me.
]]>I notice a mistake in the PHP code of bee-offline.php.
Check at the line 146 and 147.
Both variable were switched. You are reading :
$role_config = (get_option($prefix . 'offline_set')) ? get_option($prefix . 'offline_set') : array();
$construction = (get_option($prefix . 'role_conf')) ? get_option($prefix . 'role_conf') : array();
Here is the fix : just switch value like this :
$role_config = (get_option($prefix . 'role_conf')) ? get_option($prefix . 'role_conf') : array();
$construction = (get_option($prefix . 'offline_set')) ? get_option($prefix . 'offline_set') : array();
Hope it help somebody.
]]>Excellent little plugin to have when you really need to take the whole site down while updating.
Thanks for this plugins!
Jon
]]>