My script requires to have enabled mbstring.http_input and mbstring.http_output.
But in phpinfo these lines are:
mbstring.http_input - no value
mbstring.http_output - no value
Help me please!
My script requires to have enabled mbstring.http_input and mbstring.http_output.
But in phpinfo these lines are:
mbstring.http_input - no value
mbstring.http_output - no value
Help me please!
You can set mbstring
in .htaccess with the php_value
flag like so:
php_value mbstring.http_input auto
php_value mbstring.http_output auto
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.