I added in the Global Search block to my home page and when i try to use it i get this error:
Zend_Search_Lucene_Exception: Utf8 compatible lower case filter needs mbstring extension to be enabled.
I'm not sure what this means or how to fix it...
I added in the Global Search block to my home page and when i try to use it i get this error:
Zend_Search_Lucene_Exception: Utf8 compatible lower case filter needs mbstring extension to be enabled.
I'm not sure what this means or how to fix it...
The cause of the error appears to be that you don't have the 'mbstring' PHP extension installed on your server.
The problem, according to this moodle tracker issue, is that the mbstring extension is recommended but not required at installation:
http://tracker.moodle.org/browse/MDL-26115
You should be able to fix it by installing the extension. See here for details:
http://www.php.net/manual/en/mbstring.installation.php
If your server is running Fedora/Redhat, it should be as simple as running:
yum install php-mbstring
to install, then:
httpd -k restart
to refresh the configuration (you'll need root access).