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
committerJoas Schilling <coding@schilljs.com>2021-08-20 11:33:03 +0300
commit3ee82e440546b97aebb1887cc46c1fb0f39582d1 (patch)
tree5c4948abbefa77322a07fefb30a32dacde8355df /.htaccess
parent2303eebcc8b24c745aa866dd6299459532201da8 (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