tags:

views:

129

answers:

1

Fatal error: Call to undefined function mb_substr()

after moving to my dedicated server (hypervm CP) , i got lots of errors .

it would be grateful ,if you know how to solve this problem

thanks in advance

+4  A: 

It looks like the mbstring extension, which provides that kind of functions, is not installed or enabled : if it was enabled, you'd have a block "mbstring", in the output of phpinfo().

If you are admin of your server, a first idea might be to check for something like

extension=mbstring

In you php.ini file.

Pascal MARTIN
heu... no idea about that, sorry ; typically, it's in `/etc/`, like `/etc/php.ini` or `/etc/php5/apache/php.ini` or so -- but no idea about that "control panel".
Pascal MARTIN