diff --git a/application/controllers/Welcome.php b/application/controllers/Welcome.php new file mode 100644 index 00000000..5da06b80 --- /dev/null +++ b/application/controllers/Welcome.php @@ -0,0 +1,20 @@ +load->view('interface_assets/header', $data); + $this->load->view('welcome/index'); + $this->load->view('interface_assets/footer'); + } +} \ No newline at end of file diff --git a/application/views/welcome/index.php b/application/views/welcome/index.php new file mode 100644 index 00000000..65fa2f2a --- /dev/null +++ b/application/views/welcome/index.php @@ -0,0 +1,50 @@ +
+ +
+ + session->flashdata('message')) { ?> + +
+

session->flashdata('message'); ?>

+
+ + +

+ +

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!

+ +
+
+ File Change /index.php - Turn off debugging messages +
+
+

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'); + +
+
+ +
+ +
+
+ File Change /application/config/config.php - Changes +
+
+

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"; +
+
+ +
\ No newline at end of file