Arkadaşlar bu scriptin kurulumu niye hata veriyor bir türlü kuramıyorum. config.php dosyasını ayarlıyom iki bölümünde
Fatal error: Class 'mysqli' not found in /home/siteismi/public_html/kariyer/app/_includes/class.Db.php on line 16
bu hatayı veriyor hep.
ne yapmam lazım
kurulumda aynı hata ile karşılaştım
hata parçası:
class Db extends mysqli
{
function __construct()
{
/* Pass all arguments passed to the constructor on to the parent's constructor */
$args = func_get_args();
eval("parent::__construct(" . join(',', array_map('add_single_quotes', $args)) . ");");
/* Throw an error if the connection fails */
if(mysqli_connect_error() && ENVIRONMENT == 'dev')
{
throw new ConnectException(mysqli_connect_error(), mysqli_connect_errno());
}
}