HTTP output character conversion is improperly configured mbstring.http_output must be set to pass. You can check the current value on the PHP information page.

ARUN Post in ERROR
0

Error in phpbb admin page as mentioned below :

HTTP output character conversion is improperly configured  mbstring.http_output must be set to pass. You can check the current value on the PHP information page.

Solution :

First try with php.ini and .htaccess

==================

mbstring.http_input = pass
mbstring.http_output = pass

==================

If that wont work open the config.php file and add the below line under “<?php”

++++++++++++++++++++++++++++++++++++++

ini_set(“mbstring.http_input”, “pass”);
ini_set(“mbstring.http_output”, “pass”);

++++++++++++++++++++++++++++++++++++++

« Prev: :Next »

Leave a Reply

You must be logged in to post a comment.