After many years and hard work Cloudlog version 2.0 has finally arrived, this brings multi-user support, logbooks to group station locations, improved code with lots of speed increases sprinkled around.
I'd like to thank Andreas (LA8AJA) and Flo (DF2ET) for helping getting this over the finish line.
This guide is to help you get your installation configured to work with all the new features please follow it!
While some users love seeing errors even the development messages most don't so we recommend turning it off..
Edit /index.php and find define('ENVIRONMENT', 'development'); and replace with
define('ENVIRONMENT', 'production');
As part of fully supporting multi-user, we recommend making some changes to the role names as shown below, "Operators" do not have the admin features.
Edit /application/config/config.php and find $config['auth_level'] and replace the options with only the ones below.
$config['auth_level'][3] = "Operator";
$config['auth_level'][99] = "Administrator";