aggiungi questo codice alla fine del file /libraries/joomla/utilities/compat/php50x.php
if (!function_exists( 'stripos' )) {
function stripos( $haystack, $needle, $offset = 0 ) {
return strpos( strtolower( $haystack ), strtolower( $needle ), $offset );
}
}