Is this something we need to load?
S/B to enable the [ mbstring ] extension
at [ cPanel-x3 theme ] ( not x10hosting Basic) home page --> [ Software and Services ] --> [ Select PHP Version ] - set a checkmark at [ mbstring ]
be sure to click on [ Save ]
BUT
when I run this script
PHP:
<?php
error_reporting(E_ALL);
if (function_exists('mbstring'))
{
print "Function mbstring is enabled<br>\n<br>\n";
}
else
{
print "Function mbstring is not enabled<br>\n<br>\n";
}
if (extension_loaded('mbstring'))
{
print "Extension mbstring is loaded<br>\n<br>\n";
}
else
{
print "Extension mbstring is not loaded<br>\n<br>\n";
}
?>
I receive --> "Function mbstring is not enabled" and "Extension mbstring is loaded"
###
from the PHP Manual --> "
mbstring is a non-default extension. This means it is not enabled by default. You must explicitly enable the module with the
configure option."
the Admins need to resolve your issue