I am using a shared hosting through CIPL.in. They use cpanel. I am trying to deploy a ZEND app on my website. However it keeps giving the error.
An error oc
if (!defined('PDO::ATTR_DRIVER_NAME')) {
echo 'PDO unavailable';
}
elseif (defined('PDO::ATTR_DRIVER_NAME')) {
echo 'PDO available';
}
I hope this works
The configure command in your PHP output shows:
'--disable-pdo'
so I think it's safe to assume that they haven't enabled it.
Does this application want Pdo_Mysql? If so you may be able to use the Mysqli adapter instead - it depends on the software but it's possible.
In the area where you set your database connection details, there's probably an option called 'adapter'. Try setting its value to 'mysqli'