Reputation:
I'd like to know where are magento modules settings stored? Are them inside the database?
Because I'm working on a staging server and since we're moving to a new provider then I'd like to dump the db from the production site and take the source code from the staging server. Would I lose my settings without moving the staging server?
Upvotes: 3
Views: 6736
Reputation: 3938
Yes Information stored inside core_config_data and if you want to uninstall/reinstall the module ( remove the database record in core_resource that has the module name ) then when you open the browser next time it will re-install the module etc..
Upvotes: 1
Reputation: 1554
The default config will be defined and set in
/app/code/(local|community)/VendorName/ModuleName/etc/config.xml
If there is also a system.xml
present in the etc
folder it means there will be some admin config available. These settings will then be saved in the core_config_data
table in the database.
Upvotes: 7