By agrawalyogesh on
Does any one knows where does drupal saves all the configuration, i.e. which module you have selected, or theme you have selected, does it write on some configuration file or does it write it into the database. If configuration, what is the name of the configuration files
Comments
Some settings are setup in
Some settings are setup in settings.php (the default location is sites/default.
This contains global config options (like database username/password)
The module/theme type settings are mainly found in the database table called "system".
This should give you enough information to search for anything else you need.
Ray Smith
http://RaymondSmith.com
Ray Smith
http://RaymondSmith.com
Thanks Ray, I think that
Thanks Ray, I think that should be good enough for now.