On 2012-05-30 03:53, Amenem Hatankh wrote:
in the server log this error is found
PHP Fatal error: Call to undefined function mb_internal_encoding()
in
.../root/dl/include/lang.php on line 92
in the htaccesss file only this directives are declared so php5 is
used
for execution
#########
#.htaccess
AddType x-mapp-php5 .php
AddHandler x-mapp-php5 .php
#########
do you have ideas what to do..
Hi Amenem, are you sure this is only from the last update? I would
guess this is from a system update.
The mb_internal_encoding() function in PHP is part of the "mbstring"
extension, which is usually enabled by default in most PHP
distributions, but not in the PHP source itself.
If you are compiling php yourself, you need to enable it manually at
built time:
http://www.php.net/manual/en/mbstring.installation.php
If this is not the case, you should tell us which OS/distribution you
are using.