Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to solve PHP Extensions “0” must be loaded?

Tags:

web

magento

I am trying to install Magento on my server. I did everything, as written in docs. I have following error:

PHP Extensions “0” must be loaded

It occurs when I try to configure Magento in my browser, on the second page. Do you know how to fix this?

like image 766
Piotr Krysiak Avatar asked Sep 11 '25 16:09

Piotr Krysiak


1 Answers

If you are installing Magento version 1.7.0.1, try the following to solve your issue:

Replace in file app/code/core/Mage/Install/etc/config.xml (near 71th string):

<extensions>
    <pdo_mysql/>
</extensions>

with this

<extensions>
    <pdo_mysql>1</pdo_mysql>
</extensions>
like image 64
liyakat Avatar answered Sep 15 '25 17:09

liyakat