From 37317ca59ca0c030a8b811348e631cd62dd628d9 Mon Sep 17 00:00:00 2001 From: Fabrizio Balliano Date: Sun, 14 May 2023 17:26:59 +0100 Subject: [PATCH] Added PHP8 configurations to .htaccess --- .htaccess | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/.htaccess b/.htaccess index 9a9d3b18db0..7251495a9dc 100644 --- a/.htaccess +++ b/.htaccess @@ -40,6 +40,34 @@ +############################################ +## php8 settings + + + +############################################ +## adjust max execution time + + php_value max_execution_time 18000 + +############################################ +## disable automatic session start +## before autoload was initialized + + php_flag session.auto_start off + +############################################ +## enable resulting html compression + + #php_flag zlib.output_compression on + +########################################### +# disable user agent verification to not break multiple image upload + + php_flag suhosin.session.cryptua off + + + ########################################### # disable POST processing to not break multiple image upload