Magento Error – while installation – PHP Extensions “0” must be loaded:
Above error message, may get when we install a fresh magento installation, you can’t able to continue to install.
Solution is simple step, we have to follow as like below
app/code/core/Mage/Install/etc/config.xml
<extensions>
<pdo_mysql/>
</extensions>
replace to
<extensions>
<pdo_mysql>1</pdo_mysql>
</extensions>