如何为 Roundcube 单独设置 mbstring.func_overload = 0
How to individually set mbstring.func_overload = 0 for Roundcube
我得到了 VPS Debian 7 Apache + PHP。
在 php.ini 中,我为所有服务设置 mbstring.func_overload = 2。
但不幸的是,Roundcube 不适用于此设置:错误:错误的 'mbstring.func_overload' 选项值。请阅读安装文件中的要求部分或使用 Roundcube 安装程序!
Roundcube如何单独设置mbstring.func_overload = 0?或者如何为每个站点单独设置 mbstring.func_overload?
谢谢!
我在这个文件中写了 (Debian 7) /etc/apache2/apache2.conf
<Directory "/var/lib/roundcube/">
php_admin_value mbstring.func_overload 0
Order allow,deny
Allow from all
</Directory>
我得到了 VPS Debian 7 Apache + PHP。 在 php.ini 中,我为所有服务设置 mbstring.func_overload = 2。 但不幸的是,Roundcube 不适用于此设置:错误:错误的 'mbstring.func_overload' 选项值。请阅读安装文件中的要求部分或使用 Roundcube 安装程序! Roundcube如何单独设置mbstring.func_overload = 0?或者如何为每个站点单独设置 mbstring.func_overload? 谢谢!
我在这个文件中写了 (Debian 7) /etc/apache2/apache2.conf
<Directory "/var/lib/roundcube/">
php_admin_value mbstring.func_overload 0
Order allow,deny
Allow from all
</Directory>