Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

50
votes
17answers
2k views

At what point does a config file become a programming language?

I have been mulling over config files and their relationship to code for a while now and depending on the day and direction of the wind my opinions seem to change. More and more though I keep coming ...
28
votes
5answers
8k views

Where does git config --global get written to?

Using the git config --global command to set things up, where is the file? eg : git config --global core.editor "blah" Its not at these places :- C:\Program Files\Git\etc\gitconfig ...
26
votes
3answers
6k views

Log4Net: Rolling File appender, define extension

I want my logfile to look something like this: 2009-02-13.log but the problem is that I can't seem to find any way to add the .log extension. I've tried a lot of things but nothing helps. This is ...
17
votes
11answers
729 views

Should server/database config files, including passwords, be stored in source control?

I'm looking to hear some best practices... Assuming a web application that interacts with a few different production servers (databases, etc.)... should the configuration files that include database ...
13
votes
7answers
680 views

Is there any Java Library to operate on unix config files like http.conf

There are very good Perl libraries (e.g. Apache::Admin::Config) to operate on traditional unix config files like httpd.conf. Anyone know if there is good Java libraries to do the similar task? I know ...
13
votes
1answer
1k views

settings file vs app.config

I'm not really understanding the interaction/differences between settings and config files. If I add an entry to the settings file, it gets added to the app.config as well. Does this mean that ...
12
votes
3answers
9k views

What is the *.vshost.exe.config file?

When I compile an application with VS2008 I sometimes end up with 2 identical config files: *.exe.config *.vshost.exe.config What is the latter one for?
9
votes
2answers
251 views

Explain to me how config works in Rails

I have a Rails 3 application, call it "MyApp". In my config\environments\production.rb file I see such things as MyApp::Application.configure do config.log_level = :info config.logger = ...
9
votes
7answers
1k views

Fastest way to store easily editable config data in PHP?

What is the fastest way to store config data in PHP so that it is easily changeable (via PHP)? First I thought about having config.php file, but I can't edit it on fly with PHP, at least not very ...
9
votes
6answers
3k views

trigger config transformation in TFS 2010 or msbuild

I'm attempting to make use of configuration transformations in a continuous integration environment. I need a way to tell the TFS build agent to perform the transformations. I was kind of hoping it ...
8
votes
2answers
402 views

Python logging: Why is __init__ called twice?

I am trying to use python logging with a config file and an own handler. This works to some degree. What really puzzle me is __init__ being called twice and __del__ being called once. When I remove ...
8
votes
4answers
6k views

How to Load Config File Programmatically

Suppose I have a Custom Config File which corresponds to a Custom-defined ConfigurationSection and Config elements. These config classes are stored in a library. Config File looks like this ...
8
votes
2answers
2k views

Is there a way to tell Eclipse to “Save all” before building?

Does anyone know if there's a way to get Eclipse to do a "Save all" before building java code? (I don't use the "Build automatically" option, I'm talking when you use "Ctrl+B" to do a build all) ...
7
votes
3answers
234 views

Config file handling in Perl

There are plenty of Modules in the Config:: Namespace on CPAN, but they are all limited in ond way or another. I'm currently using Config::Std, which is fine most of the time, however it makes ...
7
votes
8answers
377 views

PHP: Is there a correct method for saving configuration data?

I have a config.inc file in a web application that I am building. It contains an array with configuration values for things like the MySQL database, etc. I would like these to be entered by using a ...
6
votes
2answers
2k views

Rails Console: reload! not reflecting changes in model files? What could be possible reason?

Earlier it was working fine. I have been playing little bit config. So may be i have changed some config unknowingly. here is config of environment/development.rb config.cache_classes = false ...
6
votes
1answer
1k views

Ruby Rack - mounting a simple web server that reads index.html as default

I'm trying to get some information from this tutorial: http://m.onkey.org/2008/11/18/ruby-on-rack-2-rack-builder basically I want to have a file config.ru that tell rack to read the current directory ...
6
votes
4answers
737 views

Code folding is not saved in my vimrc

I added the following code to my .vimrc: " save and restore folds when a file is closed and re-opened autocmd BufWinLeave *.* mkview autocmd BufWinEnter *.* silent loadview HTML and CSS documents ...
6
votes
9answers
2k views

SVN: How do I maintain my local config.blah file?

On the SVN server, there is a file called config.conf. I have a local version called the same thing (in the same place). How can I make sure that my local config does not get overwritten, nor checked ...
6
votes
8answers
639 views

What little things do I need to do before deploying a rails application

EDIT What small things which are too easy to overlook do I need to do before deploying a rails application? I have set up another question for any task that takes more than a minute or two, and so ...
5
votes
5answers
210 views

How to use git to maintain a slightly different copy of production source code?

I have a Ruby on Rails application, which sends out emails. In production, I want to use some X SMTP server, but in development I want to use some other SMTP server (thus my configuration file for ...
5
votes
3answers
219 views

Options for Securing Connection Strings

Just a general architecture question. I know that for web sites, one can use the features built in to IIS to encrypt the connection string section. However, what I am not certain of is this... If I ...
5
votes
4answers
307 views

What's the best way (coding-wise) to store system configuration in a PHP application?

Note: Configuration are being kept in a PHP file, config.php. I've seen this done differently, here's a short list of examples (I'm storing DB info in these examples): Constants: global, readonly ...
5
votes
2answers
2k views

How to get the values of a ConfigurationSection of type NameValueSectionHandler

I'm working with C#, Framework 3.5 (VS 2008). I'm using the ConfigurationManager to load a config (not the default app.config file) into a Configuration object. using the Configuration class, i was ...
5
votes
5answers
3k views

Load variables from external file in PHP

How can I import a variable from an external file? What I want to do is to have a configuration file in which I can write all my website settings and then to import these settings to every file, so I ...
5
votes
3answers
2k views

Custom config section: Could not load file or assembly

I'm having a very hard time trying to access a custom configuration section in my config file. The config file is being read from a .dll that is loaded as a plug-in. I created the Configuration and ...
5
votes
2answers
2k views

Configuration of Grails plugin

I'm developing my first Grails plugin. It has to access a webservice. The Plugin will obviously need the webservice url. What is the best way to configure this without hardcoding it into the Groovy ...
4
votes
2answers
128 views

What does it mean BUNDLE_DISABLE_SHARED_GEMS: '1'?

I found this BUNDLE_DISABLE_SHARED_GEMS: '1', in my .bundle/config. Does anyone know what this means?
4
votes
1answer
58 views

Google AppEngine datastore config: reusable?

The documentation about datastore config objects confuses me: "A configuration object can be used any number of times. You must create a separate configuration object for each datastore call that ...
4
votes
2answers
160 views

Building a dynamically generated configuration UI using reflection on .NET Config Datatypes

Has anyone got any experience with / attempted to do this? We have some reasonably complex XML config for our .NET application and were thinking it would be nice if we could use our config object ...
4
votes
2answers
307 views

Where to place/access config file in gem?

I am writing my first gem and I'd like specific options to be retrieved and set by the user through a config.yml file. Where should this file be placed within my gem file structure and how does ...
4
votes
3answers
752 views

Excluding items selectively from Sitecore's Lucene search index - works when rebuilding with IndexViewer, but not when using Sitecore's built-in tools

On a site powered by Sitecore 6.2, I need to give the user the ability to selectively exclude items from search results. To accomplish this, I have added a checkbox field entitled "Include in Search ...
4
votes
2answers
63 views

What's the best way to track private files in a public Mercurial repository?

"If it’s not in source control, it doesn’t exist." This question was addressed for Git here: Techniques to handle a private and public repository?. What about for Mercurial? I have several public ...
4
votes
2answers
395 views

Wamp vhost docroot always shows as c:\wamp\www not the vhost docroot

I have tried dozens of guides and read ton of information but I still can't find a fix for my problem. I have uninstalled, reinstalled and checked and double checked every possible issue. The problem ...
4
votes
2answers
719 views

How do you create log files in log4j per program execution?

I am currently using the DailyRollingFileAppender Class in log4j to do daily log file appending but I want to have the log files separated in the following format: ...
4
votes
1answer
2k views

Loading custom config file into a Codeigniter library

I know this is probably simple, but I'm not getting. I've created a library, and I want to load the parameters from a config file. So here's an example of what I have: // libraries/Mylib.php class ...
4
votes
3answers
1k views

How to use git difftool to diff merge conflicts?

After a merge failed with some conflicts I can list those with git diff, but git difftool won't display them with the difftool set in the config(in my case Kaleidoscope), instead it will just use ...
4
votes
4answers
2k views

How do I force a native application to use an older C runtime

Visual Studio 2010 installs version ...4974 of the VC9 runtime whose .pdbs are unavailable. How can I force my GME.exe to use an older VC9 runtime? I've tried putting this into GME.exe.config: ...
4
votes
1answer
590 views

TFS 2010 build config transform problem

I'm facing quite a problem while setting up automated TFS Builds. Basically I created new configuration called Tests, added transform config, defined different connection strings for the Database. ...
4
votes
2answers
728 views

C# Windows Service XML

Scenario I have a windows service written in C# that performs some processing based on parsing an XML file and use that data to carry out various tasks. The service also does various bits of logging ...
4
votes
3answers
9k views

How do I configure .net framework 3.5 in windows 7

I am trying to use the .net configuration tool in windows 7 but can not find it. Does anyone know where to download this tool from or where it is located in windows 7 (prof)?
4
votes
5answers
4k views

single app.config multi-project c#

I want to use a single app.config by 3 different projects. How to access the configurations? ConfigurationManager.AppSettings["config1"]
4
votes
8answers
1k views

Parsing an existing config file

I have a config file that is in the following form: protocol sample_thread { { AUTOSTART 0 } { BITMAP thread.gif } { COORDS {0 0} } { DATAFORMAT { { TYPE hl7 } { ...
4
votes
5answers
6k views

C# Configuration Files

Okay, so a while ahead I posted how to read other config files of other programs (here is the link Previous Post. I managed to do it. But now there is another problem. The scenario is like this, I ...
4
votes
4answers
919 views

Store a collection of values in a config file

In a .Net 3.5 (Windows) service, I would like to store a small collection of values in the config file. Basically, I need to allow admins to add and remove values from this small collection. What do ...
3
votes
1answer
48 views

Git: Only push private config file to test repository and not to github?

I have a Rails app with a config/my_private_data.yml file. I would like to push the entire app both to my test server and to github. However, when I push to the test server, I want to include the ...
3
votes
3answers
150 views

What are best practices storing configuration settings a .NET application? [closed]

Configuration file handling is a common problem so I wondered why nobody has asked a similar question yet. In .NET we usually use the app.config file for application runtime paramaters, however this ...
3
votes
2answers
85 views

What is the best way to store/set configuration settings for a C# application?

I have some values that I want to be able to set, and the application to load them from some kind of file. The only concept I can think of, is a simple txt file, that might have the following lines: ...
3
votes
2answers
501 views

mexHttpBinding - Add a ServiceMetadataBehavior to the configuration file or to the ServiceHost directly to enable support for this contract

I know this has been asked many times, and answered many times, but, all the provided samples that should be working don't seem to want to work for me today. When I try to start the host, I keep ...
3
votes
3answers
65 views

Use of xml config files - simple mapping approaches?

I am writing a simple physics engine, and I want to include some form of config files. As I look at xml, the tree structure makes a lot of sense to me, and looking at libxml it seems to be very easy ...

1 2 3 4 5 11