From eb0be429dabed1900075efffd790d8a907b0e665 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Mon, 15 Apr 2024 12:24:43 +0200 Subject: [PATCH 1/5] check config --- application/views/debug/index.php | 78 +++++++++++++++++++------------ 1 file changed, 48 insertions(+), 30 deletions(-) diff --git a/application/views/debug/index.php b/application/views/debug/index.php index 8af44a95e..a4726a3bf 100644 --- a/application/views/debug/index.php +++ b/application/views/debug/index.php @@ -131,6 +131,47 @@ +
+
+ Config Maintenance +
+
+ config->item('auth_mode') != '3') { ?> +
+ +

Please edit your ./application/config/config.php File:
+ Go to your application/config Folder and compare config.sample.php with your config.php

+ Change $config['auth_mode'] to the value 3 (Strongly recommended) +

+
+ +
+ Ok Authentication Mode is set correctly +
+ + + config->item('cl_multilanguage')) { ?> +
+ +

Please edit your ./application/config/config.php File and add some rows to it:

+ Go to your application/config Folder and compare config.sample.php with your config.php
+ You'll probably find a block with language-settings. Please include this block into your current config.php +

+
+ + +
+ Ok Multiuser-Language Support is enabled +
+ +
+
Migrate Userdata
@@ -208,7 +249,7 @@
-
- - -
+
+ + +
@@ -439,29 +480,6 @@ - -
-
- Settings Maintenance -
- config->item('cl_multilanguage')) { ?> - -
-

Please edit your ./application/config/config.php File and add some rows to it:

- Go to your application/config Folder and compare config.sample.php with your config.php
- You'll probably find a block with language-settings. Please include this block into your current config.php -

-
- - - - -
@@ -473,4 +491,4 @@ var local_branch = 'n/a'; - + \ No newline at end of file From 9cf957fd55b5bf1e2521e0c282316c1f9373dee3 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Mon, 15 Apr 2024 12:57:56 +0200 Subject: [PATCH 2/5] environment and codeigniter --- application/views/debug/index.php | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/application/views/debug/index.php b/application/views/debug/index.php index a4726a3bf..b4b41bf03 100644 --- a/application/views/debug/index.php +++ b/application/views/debug/index.php @@ -39,6 +39,10 @@ Migration There is something wrong with your Migration in Database!"); ?> + + Environment + + @@ -62,16 +66,8 @@ MySQL Version db->version(); ?> - - - - -
-
Codeigniter
-
- - +
VersionCodeigniter Version
From 1edef55330a0c4827b4e82bf0c3f3b81d36af8a3 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Mon, 15 Apr 2024 13:26:11 +0200 Subject: [PATCH 3/5] php settings --- application/views/debug/index.php | 199 ++++++++++++++++++++++-------- 1 file changed, 146 insertions(+), 53 deletions(-) diff --git a/application/views/debug/index.php b/application/views/debug/index.php index b4b41bf03..5c6640b98 100644 --- a/application/views/debug/index.php +++ b/application/views/debug/index.php @@ -181,64 +181,157 @@
-
PHP Modules
+
PHP
- - - - - +
+
+

Modules

+
curl - - Installed - - Not Installed - -
+ + + + - - - - + + + + - - - - + + + + - - - - + + + + - - - - -
curl + + Installed + + Not Installed + +
MySQL - - Installed - - Not Installed - -
MySQL + + Installed + + Not Installed + +
mbstring - - Installed - - Not Installed - -
mbstring + + Installed + + Not Installed + +
xml - - Installed - - Not Installed - -
xml + + Installed + + Not Installed + +
zip - - Installed - - Not Installed - -
+ + zip + + + Installed + + Not Installed + + + + +
+
+

Settings

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
max_execution_time ' . $max_execution_time . ' s'; ?> + = $max_execution_time) { ?> + + + + +
max_upload_file_size ' . $max_upload_file_size . 'M'; ?> + = ($max_upload_file_size * 1024 * 1024)) { // compare with given value in bytes + ?> + + + + +
post_max_size ' . $post_max_size . 'M'; ?> + = ($post_max_size * 1024 * 1024)) { // compare with given value in bytes + ?> + + + + +
memory_limit ' . $memory_limit . 'M'; ?> + = ($memory_limit * 1024 * 1024)) { // compare with given value in bytes + ?> + + + + +
allow_url_fopenOn + + On + + Off + +
+
+
From 7dfa51e6d04c0454b5f17dbe11f1c1f4f84dce3a Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Mon, 15 Apr 2024 13:35:33 +0200 Subject: [PATCH 4/5] write modules like the are called actually --- application/views/debug/index.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/application/views/debug/index.php b/application/views/debug/index.php index 5c6640b98..c41bb3bf0 100644 --- a/application/views/debug/index.php +++ b/application/views/debug/index.php @@ -188,7 +188,7 @@

Modules

- + - + - + - + - +
curlphp-curl Installed @@ -199,7 +199,7 @@
MySQLphp-mysql Installed @@ -210,7 +210,7 @@
mbstringphp-mbstring Installed @@ -221,7 +221,7 @@
xmlphp-xml Installed @@ -232,7 +232,7 @@
zipphp-zip Installed From 4f9179f5d2703782ddf4427cf180d5236d9fb8a4 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Mon, 15 Apr 2024 13:36:51 +0200 Subject: [PATCH 5/5] formatting code --- application/views/debug/index.php | 156 +++++++++++++++--------------- 1 file changed, 78 insertions(+), 78 deletions(-) diff --git a/application/views/debug/index.php b/application/views/debug/index.php index c41bb3bf0..cf891f0a0 100644 --- a/application/views/debug/index.php +++ b/application/views/debug/index.php @@ -245,90 +245,90 @@

Settings

- - - - - - + + + + + - - - - - + + + + + - - - - - + + + + + - - - - - - - - - - - + + + + + + + + + + +
max_execution_time ' . $max_execution_time . ' s'; ?> - = $max_execution_time) { ?> - - - - -
max_execution_time ' . $max_execution_time . ' s'; ?> + = $max_execution_time) { ?> + + + + +
max_upload_file_size ' . $max_upload_file_size . 'M'; ?> - = ($max_upload_file_size * 1024 * 1024)) { // compare with given value in bytes - ?> - - - - -
max_upload_file_size ' . $max_upload_file_size . 'M'; ?> + = ($max_upload_file_size * 1024 * 1024)) { // compare with given value in bytes + ?> + + + + +
post_max_size ' . $post_max_size . 'M'; ?> - = ($post_max_size * 1024 * 1024)) { // compare with given value in bytes - ?> - - - - -
post_max_size ' . $post_max_size . 'M'; ?> + = ($post_max_size * 1024 * 1024)) { // compare with given value in bytes + ?> + + + + +
memory_limit ' . $memory_limit . 'M'; ?> - = ($memory_limit * 1024 * 1024)) { // compare with given value in bytes - ?> - - - - -
allow_url_fopenOn - - On - - Off - -
memory_limit ' . $memory_limit . 'M'; ?> + = ($memory_limit * 1024 * 1024)) { // compare with given value in bytes + ?> + + + + +
allow_url_fopenOn + + On + + Off + +