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

后端 未结 2 724
情深已故
情深已故 2021-02-01 17:51

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

相关标签:
2条回答
  • 2021-02-01 18:09

    You have to install the PHP 5.4 support package:

    "PHP 5.4 support - Enables Magento to work with PHP 5.4 - Added Jan 17, 2014" http://www.magentocommerce.com/download

    0 讨论(0)
  • 2021-02-01 18:26

    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>
    
    0 讨论(0)
提交回复
热议问题