In this case, PHP was installed with mb_string but the function mb_ereg seems to be missing. To use Kajona, the file /system/functions.php should be opened with a text-editor. Then, replace the following section at the files' header
//Mbstring loaded? If yes, we could use unicode-safe string-functions
if(!defined("_mbstringloaded_")) {
if(extension_loaded("mbstring")) {
define("_mbstringloaded_", true);
mb_internal_encoding("UTF-8");
}
else {
define("_mbstringloaded_", false);
}
}
by
//For the sake of different loaders - check again :(
//Mbstring loaded? If yes, we could use unicode-safe string-functions
if(!defined("_mbstringloaded_")) {
define("_mbstringloaded_", false);
}
Afterwards the system can be installed without further problems.