Forum Moderators: coopster
When using PHP as an Apache module, it is possible to override those settings in each Virtual Host directive inhttpd.confor per directory with.htaccess. Refer to the Configuration section and Apache Manual for details.
Resource:
[php.net...]
The directives are listed on that page in Example 4. Following the Configuration [php.net] link we find a section titled How to change configuration settings [php.net] (remembering of course that the note stated we must be using PHP as an Apache module). Using the directions provided, we should end up with the following directives to place in our
.htaccessfile:
;; Disable HTTP Input conversion
php_value mbstring.http_input pass
;; Disable HTTP Input conversion (PHP 4.3.0 or higher)
php_flag mbstring.encoding_translation Off