Skip to content

Instantly share code, notes, and snippets.

@splacento-incomm
Created May 5, 2014 08:40
Show Gist options
  • Save splacento-incomm/0fa7e0f5057b6e9fb372 to your computer and use it in GitHub Desktop.
Save splacento-incomm/0fa7e0f5057b6e9fb372 to your computer and use it in GitHub Desktop.
magento PHP Extensions "0" must be loaded.
Replace in file app/code/core/Mage/Install/etc/config.xml (near 71th string) this
<extensions>
<pdo_mysql/>
</extensions>
with this
<extensions>
<pdo_mysql>1</pdo_mysql>
</extensions>
then:
In app/etc/config.xml
<resources>
<default_setup>
<connection>
<host>your_host</host>
<username>your_username</username>
<password>your_password</password>
<dbname>your_dbname</dbname>
<model>mysql4</model>
<initStatements>SET NAMES utf8</initStatements>
<type>pdo_mysql</type>
<active>1</active>
</connection>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment