Skip to content

Instantly share code, notes, and snippets.

@Nolwennig
Last active July 29, 2019 14:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Nolwennig/210440a07a4b48feca0c to your computer and use it in GitHub Desktop.
Save Nolwennig/210440a07a4b48feca0c to your computer and use it in GitHub Desktop.
Magento 1.9.2.1 app/etc/local.xml.template
<config>
<global>
<install>
<date>{{date}}</date>
</install>
<crypt>
<key>{{key}}</key>
</crypt>
<disable_local_modules>false</disable_local_modules>
<resources>
<db>
<table_prefix>{{db_prefix}}</table_prefix>
</db>
<default_setup>
<connection>
<host>{{db_host}}</host>
<username>{{db_user}}</username>
<password>{{db_pass}}</password>
<dbname>{{db_name}}</dbname>
<initStatements>{{db_init_statemants}}</initStatements>
<model>{{db_model}}</model>
<type>{{db_type}}</type>
<pdoType>{{db_pdo_type}}</pdoType>
<active>1</active>
</connection>
</default_setup>
</resources>
<session_save>{{session_save}}</session_save>
</global>
<admin>
<routers>
<adminhtml>
<args>
<frontName>{{admin_frontname}}</frontName>
</args>
</adminhtml>
</routers>
</admin>
</config>
@Hanhan1989
Copy link

thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment