I recieved this error while installing Magento on a customer\'s server, \'PHP Extension \"pdo_mysql\" must be loaded\'. How would one go about installing/enabling this exten
I don't think you can do it in a shared host or with cPanel.
Convince the webhost to install it for you.
You can enable PDO in cPanel if you have cloudlinux installed. In cPanel search for PHP Version and on the resulting screen select and enable PDO and finally select save. * http://docs.cloudlinux.com/index.html?using_php_selector.html
If you do not have CloudLinux and PhpSelector installed you will need an administrator account to install PDO through easyapache. In WHM follow this guide:
PS. I note that you are on 11.24.5-STABLE. This is a extremely old version of WHM/cPanel. You should update your server as this version of cPAnel is no longer supported by cPanel.
I'm using Magento CE 1.7, CentOS 6, and WHM 11.38, and here's what I did to resolve the 'PHP Extension "pdo_mysql" must be loaded' error I received during my Magento install:
Open the newly created php.ini file and add the following:
extension=pdo.so
extension=pdo_sqlite.so
extension=sqlite.so
extension=pdo_mysql.so
This might be a good time to restart Apache using terminal (# service httpd restart). Hope that helps!