By chaoyzj on
PHP register globals Enabled ('1')
register_globals is enabled. Drupal requires this configuration directive to be disabled. Your site may not be secure when register_globals is enabled. The PHP manual has instructions for how to change configuration settings.
Unicode library Error
Multibyte string input conversion in PHP is active and must be disabled. Check the php.ini mbstring.http_input setting. Please refer to the PHP mbstring documentation for more information.
Comments
PHP.ini configuration tweaks
Yes, assuming that you are the server maintainer and thus have enough control of your php.ini configuration, you need to edit or override php.ini and disable those two lines.
Below is a copy& paste of what the area you need to adjust looks like in a typical php.ini file... the instructions before each switch will help you understand the implications:
register_globals = Off
... and
the Multibyte string conversion issue is already responded to here: http://drupal.org/node/207287
but i'm not the maintainer of
but i'm not the maintainer of server which I hosted my site. So is there any method to resolve this issue?
Ask them (!), or look through
Ask them (!), or look through the hosters documentation.
I just put
I just put ini_set('register_globals', '0'); into the settings.php but it looks does not work.