我正在尝试在 CentOS 5.3 VMware 'box' 上安装 indefero,但遇到了问题。在安装的很早的时候,我收到了一个错误,我可以缩小到这个范围:
[root@code /var/www/html]# cat x.php
<?php
mb_internal_encoding("UTF-8");
?>
[root@code /var/www/html]# php x.php
PHP Fatal error: Call to undefined function mb_internal_encoding() in
/var/www/html/x.php on line 2
通过 Apache 通过 http 调用此脚本时出现相同的错误。现在根据PHP 手册,mb_internal_encoding 函数应该是 PHP 5 中的内置函数。
我有 CentOS 5.3 i386(Linux 代码 2.6.18-53.1.21.el5 #1 SMP Tue May 20 09:34:18 EDT 2008 i686 i686 i386 GNU/Linux)并且我已经安装了 PHP 5.2.9。
[root@code /var/www/html]# php -v
PHP 5.2.9 (cli) (built: Jul 8 2009 06:03:36)
Copyright (c) 1997-2009 The PHP Group
Zend Engine v2.2.0, Copyright (c) 1998-2009 Zend Technologies
我仔细检查了:selinux 已被禁用(现在)。
我该如何解决?