Bold wrote:
TeraWURFL is designed to work with MySQLi (MySQL improved) library
This warning arises in the check
if(!class_exists('mysqli') || !function_exists('mysqli_connect'))
{
$WARNINGS[] = JText::_('TeraWURFL is designed to work with MySQLi (MySQL improved) library.');
$test = false;
}
that is mysqli extension
is not loaded (because of it declares mysqli class and mysqli_connect function).
Check that you have
in your php.ini and that abovementioned class and function aren't disabled through disable_classes and disable_functions.