Tagged Questions

INI is a file format for saving configurations. They are basic text files with a specified format. An INI file contains key/value pairs, which are divided into sections. For example, an INI file for a mobile phone OS could look like this. [graphics] login_screen=mountains ...

learn more… | top users | synonyms (1)

36
votes
9answers
22k views

What is the easiest way to parse an INI File in C++?

I'm trying to parse an INI file using C++. Any tips on what is the best way to achieve this? Should I use the Windows API tools for INI file processing (with which I am totally unfamiliar), an ...
23
votes
12answers
4k views

Registry vs. INI file for storing user configurable application settings

I'm a new Windows programmer and I'm not sure where I should store user configurable application settings. I understand the need to provide a user friendly means for the user to change application ...
15
votes
5answers
13k views

What is the easiest way to parse an INI file in Java?

I am writing a drop-in replacement for a legacy application in Java. One of the requirements is that the ini files that the older application used have to be read as-is into the new Java Application. ...
12
votes
5answers
9k views

create ini file, write values in PHP

I cannot find a way that easily lets me create a new file, treat it as an ini file (not php.ini or simiilar... a separate ini file for per user), and create/delete values using PHP. PHP seems to offer ...
7
votes
3answers
351 views

How can I separate the sections in an INI file?

When saving to an INI file, especially when more than one section is defined, the data is saved all together with no lines between the sections. For external editing purposes it would be handy to ...
6
votes
4answers
5k views

Recommended way to read and write .ini files in VBA

Are any methods available in VBA to read and write INI files? I know I could use; Open "C:\test.ini" For Input As #1 ...and parse the data. Instead I am trying to see what tools are already ...
5
votes
5answers
172 views

INI file to multidimensional array in PHP

I have the next INI file: a.b.c = 1 a.b.d.e = 2 I am parsing this file using parse_ini_file. And it returns: array( 'a.b.c' => 1, 'a.b.d.e' => 2 ) But I want to create a ...
5
votes
2answers
120 views

Round-trip parsing of data structure format (YAML or whatnot) preserving comments, for writing configuration

I have been using YAML as configuration file format in several applications, and all went well except one thing: when my program needs to write/modify a config variable in a YAML config file, it ...
4
votes
4answers
729 views

What settings storage format to choose?

I'm writing a Qt application and will need to store the settings for the program. I want them to be easily editable by non-advanced users yet be flexible enough for advanced users (thus allow easy ...
3
votes
7answers
328 views

Ini Files - Read Multi Lines?

I am aware that Ini Files are meant for single lines of information, needless to say I am trying to read/write multi lines to and from the Ini - without much success (I always seem to do things the ...
3
votes
3answers
151 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
1answer
193 views

Python config parser that supports section inheritance?

I'm looking for an ini style config parser in Python that supports section inheritance similar to what Zend_Config_Ini does in PHP. Does such a module exist or will I need to roll my own?
3
votes
5answers
2k views

How to parse ini file with Boost

I have a ini file which contains some sample values like: [Section1] Value1 = 10 Value2 = a_text_string I'm trying to load these values and print them in my application with Boost but i don't ...
3
votes
3answers
162 views

PHP Configuration Storage

Ways to store configuration for a Web App written in PHP? I've seen people use .ini, basic .php, etc. Also, define() or simple global variables? Most information as you can find, thankyou! Also, are ...
3
votes
3answers
1k views

::GetPrivateProfileString read whole section of INI file

I'm modifying existing C++ application and moving out some values that are currently hard coded. I'm doing this with one class that will "manage" this whole thing and hold map<CString, CString> ...
3
votes
2answers
962 views

boost::program_options - how to handle sections in INI file

In a config like below; is there a way to handle individual sections. I am looking for a way to validate individual "server" sections below, in a reliable manner. [basic] number_of_servers=3 ...
3
votes
2answers
423 views

Parsing an “advanced” INI file with PHP

Basically, I would like a simple, easy, one-file way to parse an INI file with "advanced" features, like section inheritance and property nesting, like Zend_Config_Ini. For example: [foo] a = 1 b.a ...
3
votes
5answers
334 views

Creating a “two way” configuration file

I am writing a PHP application targeted at non-geeks, non-programmers. I need to create an option page with a bunch of "options" and then store those options...somewhere. Using a database application ...
3
votes
1answer
1k views

Including variables inside curly braces in a Zend config ini file on Linux

I am trying to include a variable in a .ini file setting by surrounding it with curly braces, and Zend is complaining that it cannot parse it properly on Linux. It works properly on Windows, though: ...
3
votes
1answer
795 views

How do I escape a new line character in a .ini file so that Zend_Config_Ini reads it literally?

I am trying to store a multiple line e-mail in an ini file using PHP/Zend Framework. My string has new lines characters in it, and when I use Zend_Config_Ini to parse the ini file, the new line ...
3
votes
2answers
363 views

Configuration manager for PHP

I am working on code re-factoring of configuration file loading part in PHP. Earlier I was using multiple 'ini' files but now I plan to go for single XML file which will be containing all ...
3
votes
1answer
8k views

browscap ini directive not set

I'm using the get_browser() function in an attempt to warn people that their browser doesn't support Javascript. Actually I'm using it to tell them they can use certain parts of a web application I'm ...
3
votes
3answers
556 views

my_config.ini vs my_config.php

At work we use a .ini file to set variables prior to calling the rest of the framework (I think it goes function getConfigVars(){ //read my_config.ini file .... //call framework } and I ...
3
votes
5answers
19k views

eclipse ini configuration

actually i and my friend are trying to learn and use eclipse 3.4 and we are having some heap memory issue while working, and my friend suggested to increase the memory allocation to eclipse ide as he ...
2
votes
2answers
171 views

How does one specify a file path relative to the location of the config file when Zend_Config_Ini is in use?

I've got a common set of functionality I'd like to embed into a Zend_Application instance using the configs parameter inside of that app's Zend_Config instance. However, the slaved configuration file ...
2
votes
1answer
117 views

Tutorial about TMemIni

I have used TIniFile for saving application data. Now I want to try TMemIniFile. Where can I found good tutorials about them?
2
votes
3answers
118 views

Change to php.ini does not have effect

I added this line to my php.ini file: date.timezone = "Europe/Rome". But phoinfo() still show me this: date.timezone America/Phoenix America/Phoenix. Where I'm wrong?
2
votes
1answer
48 views

What are the possible issues when running a PHP script for a long time

I am developing a PHP web application for photographers. A normal process would be a photographer uploads a folder of approx 1000 High res images by FTP and then clicks a button in the browser. At ...
2
votes
3answers
140 views

Using a keyword as variable name in an INI file

I have the following in an INI file: [country] SE = Sweden NO = Norway FI = Finland However, when var_dump()ing PHP's parse_ini_file() function, I get the following output: PHP Warning: syntax ...
2
votes
2answers
48 views

Large Configuration for class, implementation suggestions

So I have a large class that I'm refactoring to be more flexible. well over 100 configurable properties (variables) in a INI file. Some are dev settings and others are production settings. ...
2
votes
1answer
321 views

Inno Setup - Finding out what install options were used for an application - from the application

I have an Inno Setup installer for an app that offers the user a choice between "Install for all users" and "Install just for me". If it is installed for all users, the INI file is placed in ...
2
votes
1answer
114 views

Regex to match ini value

I'm trying to match the last name of a value of an ini line. foo.bar.far.boo = "some value" I can match 'boo =' but I just need 'boo' I do (\w+)\s*= but it matches the equal signs, but I don't ...
2
votes
1answer
219 views

how to expand an ini-file in perl

I need to expand an INI-file in perl. I have a given INI-File that I can read with Config::IniFiles, but I need to add parameters to that INI file too. For example the file looks like [section1] ...
2
votes
2answers
219 views

php ini_set and ini_get isnt working the way I want

Im using this ini_set('post_max_size','40M'); echo ini_get('post_max_size'); And for some reason post_max_size is echoing out 8M (the default one) and not 40M. Is the
2
votes
4answers
265 views

Is parsing an ini file in PHP better than having variables defined in code?

I was reading about PDO and I came across the parse_ini_file function. A number of developers suggested using this function to parse in db settings rather than hard coding the db settings in code for ...
2
votes
1answer
149 views

How come when I use the tComment VIM plugin in a .ini file it adds/removes semi-colons instead of hashes as comment?

I am using gVIM and the tComment plug-in during editing the development.ini file in a Pylons/Python project. The default development.ini file has lines commented out using the hash # symbol which is ...
2
votes
1answer
807 views

get list of sections from ini-file using bash (sed/awk)

I want to create a var from the section names of an ini file like: [foo] ; ... [bar] ; ... [baz:bar] ;... now I need a var like SECTIONS="foo bar baz" thanks in advance
2
votes
3answers
4k views

PHP ini file_get_contents external url

I use following PHP function: file_get_contents('http://example.com'); Whenever I do this on a certain server, the result is empty. When I do it anywhere else, the result is whatever the page's ...
2
votes
4answers
287 views

Upload max size in PHP?

Is it possible for the upload of ~100 MB files using PHP? If so, what changes need to occur in the configuration file (php.ini)? Sri
2
votes
1answer
209 views

get_file_contents not working on my server

I tested this script on another server and it worked fine. Do I have to set my php.ini file? And how? <?php ini_set('allow_url_fopen', 1); if (!isset($_GET['url'])) { exit(); } echo ...
2
votes
3answers
698 views

configuration file editor in Eclipse

Greetings, Anybody uses Eclipse to edit configuration files like httpd.conf and the likes, or even shell scripts? Which editors are there for that? Thanks. Pedro.
2
votes
4answers
3k views

Read ini from windows batch file

I'm trying to read a ini file with this format: [SectionName] total=4 [AnotherSectionName] total=7 [OtherSectionName] total=12 Basically I want to echo out certain values from the ini file(eg. the ...
2
votes
2answers
213 views

Using SQLite for configuration management

I'm developing a PHP application where I have to store configuration variables. Using MySQL would be overkill, because it's a CLI app I'm talking about and there are only a couple of configuration ...
2
votes
5answers
4k views

How can I access INI files from Perl?

What is the best way to parse INI file in Perl and convert it to hash?
2
votes
1answer
3k views

Qt: QSettings on Windows with INI files and comments

I have an application I'm writing using Qt 4.5.2 on Windows. I'm storing some settings in an INI file and using QSettings to load and save the settings. I'd like to have some comments in the INI ...
2
votes
3answers
1k views

Best Practices for creating a PHP INI/CONFIG file and keep it secure

I always used a normal PHP file and just defined the variables in that file, but is this considered best practice? Example: <?php define('DB_PASS', 'p@ssw0rd'); ?>
2
votes
3answers
2k views

Get INI file value with WiX

I'd like to read a value from an INI file in a WiX installer. I've just tried to use IniFileSearch, but this looks for an INI file or a path specified in an INI file (the documentation isn't clear), ...
2
votes
3answers
1k views

PHP: reading config.ini to array with file()

My config file looks like this: title = myTitle; otherTitle = myOtherTitle; when I read the file with file(), it creates this array [0] => title = myTitle; [1] => otherTitle = myOtherTitle; ...
2
votes
3answers
1k views

Help improve this INI parsing code

This is something simple I came up with for this question. I'm not entirely happy with it and I saw it as a chance to help improve my use of STL and streams based programming. std::wifstream ...
2
votes
3answers
915 views

PHP parse_ini_file() - where does it look?

if I call php's parse_ini_file("foo.ini"), in what paths does it look for foo.ini ? the include path? the function's documentation doesn't mention it.

1 2 3 4 5