Skip to content
Snippets Groups Projects
Commit 4ebaf8b6 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #217170 by maartenvg, rbiffl: boolean PHP settings are best set with...

- Patch #217170 by maartenvg, rbiffl: boolean PHP settings are best set with php_flag instead of php_value.
parent 312b97e9
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -29,12 +29,12 @@ DirectoryIndex index.php ...@@ -29,12 +29,12 @@ DirectoryIndex index.php
# PHP 5, Apache 1 and 2. # PHP 5, Apache 1 and 2.
<IfModule mod_php5.c> <IfModule mod_php5.c>
php_value magic_quotes_gpc 0 php_flag magic_quotes_gpc off
php_value register_globals 0 php_flag register_globals off
php_value session.auto_start 0 php_flag session.auto_start off
php_value mbstring.http_input pass php_value mbstring.http_input pass
php_value mbstring.http_output pass php_value mbstring.http_output pass
php_value mbstring.encoding_translation 0 php_flag mbstring.encoding_translation off
</IfModule> </IfModule>
# Requires mod_expires to be enabled. # Requires mod_expires to be enabled.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment