Jump to content

Recommended Posts

Hello,

 

I get the error pdo_mysql, I search forums for two days but I didn't meet any answer yet.

 

Error is this:

 

Optional parameters: Please fix the following error(s)

  • pdo_mysql

Concerned part of php.ini file is below:

 

; Directory in which the loadable extensions (modules) reside.
extension_dir = "/usr/local/lib/php/extensions/no-debug-non-zts-20090626"
zend_extension="/usr/local/IonCube/ioncube_loader_lin_5.3.so"
extension="suhosin.so"
extension = "pdo.so"
extension = "pdo_sqlite.so"
extension = "sqlite.so"
extension = "pdo_mysql.so"

 

and here is my configuration info

 

Server information

 

Server information: Linux #1 SMP Wed Dec 19 07:05:20 UTC 2012 x86_64

Server software version: Apache/2.2.23 (Unix) mod_ssl/2.2.23 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635

PHP version: 5.3.21

Memory limit: 128M

Max execution time: 1000

Database information

 

MySQL version: 5.1.66-cll

MySQL engine: InnoDB

Tables prefix: ps_

 

Store information

 

Prestashop version: 1.5.3.1

 

 

 

Anyone has any idea about this error?

Link to comment
Share on other sites

Hello,

 

This fixed my problem:

 

Change php.ini codes:

 

extension="suhosin.so"
extension = "pdo.so"
extension = "pdo_sqlite.so"
extension = "sqlite.so"
extension = "pdo_mysql.so"

 

into this:

 

extension=suhosin.so
extension=pdo.so
extension=pdo_sqlite.so
extension=sqlite.so
extension=pdo_mysql.so

 

Hope it workes for you too.

  • Like 2
Link to comment
Share on other sites

  • 1 year later...
  • 3 years later...

Hello,

 

This fixed my problem:

 

Change php.ini codes:

 

extension="suhosin.so"
extension = "pdo.so"
extension = "pdo_sqlite.so"
extension = "sqlite.so"
extension = "pdo_mysql.so"
into this:

 

extension=suhosin.so
extension=pdo.so
extension=pdo_sqlite.so
extension=sqlite.so
extension=pdo_mysql.so
Hope it workes for you too.

 

 

Thank you very much! I added the second codes into my php.ini file and it worked for me.

 

I was getting a "PDO MySQL extension is not loaded" error when I was trying to install Prestashop v1.7.0.5 and now it's fixed.

Link to comment
Share on other sites

×
×
  • Create New...