Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoracsfer <carlos@reendex.com>2021-04-21 11:11:06 +0300
committerMichaIng <micha@dietpi.com>2021-09-21 18:14:50 +0300
commitfe89d00fd5eaed5b6f55479dc59276424e4285f7 (patch)
tree57c058b015a9119c48bf97624b88a05f660bdbb1 /.htaccess
parentcb170bacf313b0ae5e1c4ae8fd75778c750f3417 (diff)
Fix module name for PHP8+
Diffstat (limited to '.htaccess')
-rw-r--r--.htaccess4
1 files changed, 3 insertions, 1 deletions
diff --git a/.htaccess b/.htaccess
index 46e83b17e1f..4986f7d380f 100644
--- a/.htaccess
+++ b/.htaccess
@@ -53,6 +53,7 @@
</FilesMatch>
</IfModule>
+# PHP 7.x
<IfModule mod_php7.c>
php_value mbstring.func_overload 0
php_value default_charset 'UTF-8'
@@ -62,7 +63,8 @@
</IfModule>
</IfModule>
-<IfModule mod_php8.c>
+# PHP 8+
+<IfModule mod_php.c>
php_value mbstring.func_overload 0
php_value default_charset 'UTF-8'
php_value output_buffering 0