我已经安装了很多drupal站点,以前从未遇到过这个问题。在尝试安装8.1.2时,我得到一个错误,它说:
php中的多字节字符串输入转换是活动的,必须是
残疾人。检查php.ini mbstring.http_输入设置。请参阅
有关更多信息,请参阅php mbstring文档。
drupal附带的.htaccess
文件已经有一个部分应该禁用此功能:
# PHP 5, Apache 1 and 2.
<IfModule mod_php5.c>
php_value assert.active 0
php_flag session.auto_start off
php_value mbstring.http_input pass
php_value mbstring.http_output pass
php_flag mbstring.encoding_translation off
# PHP 5.6 has deprecated $HTTP_RAW_POST_DATA and produces warnings if this is
# not set.
php_value always_populate_raw_post_data -1
</IfModule>
我已经测试过了,使用了这个.htaccess文件。服务器正在使用cpanel/whm运行新安装的centos 7。我还将php设置(使用whm)更改为:
; http input encoding.
mbstring.http_input = pass
; http output encoding. mb_output_handler must be
; registered as output buffer to function
mbstring.http_output = pass
尽管我认为这和违约的情况没有明显的不同。我检查了这是实际使用的php.ini文件。我重新启动了apache。
最佳答案
解决方案是启用mbstring扩展名。