if you get this error for php4, you need add the following into:


admin/includes/functions/general.php

if(!function_exists('stripos')) {
function stripos($haystack, $needle, $offset = 0) {
return strpos(strtolower($haystack), strtolower($needle), $offset);
}
}


More...