mbstring is a php extension to support multibyte characters (such as chinese etc)
mcrpyt is another php extension that support various encryption algorithms.
If your mysql databases use tables with multibyte characters, then you must enable mbstring support in php. As for mcrypt I guess it's used by phpmyadmin to encrypt passwords, etc.
To check if your php installation has support for these extensions, you can run:
Code:
php -i|grep mbstring
php -i|grep mcrypt
These extensions can be installed from source adding " --enable-mbstring" and "--with-mcrypt" to the ./configure script, or if you're using an rpm based distro by installing php-mbstring, php-mcrypt packages