Tagged Questions
The ini-files tag has no wiki summary.
10
votes
5answers
1k views
PHP parse_ini_file() performance?
I know some people store settings in an .ini file and get the values with parse_ini_file() in PHP. Without running tests, I am curious about performance.
Do you know if opcode cache can cache any of ...
5
votes
1answer
528 views
PHP: Escape illegal chars in .ini-files
The documentation on parse_ini_file states that you can't use these chars {}|&~![()^" in the value. Is there some way to escape these chars? I need to use them. Normal escaping with \ doesn't seem ...
4
votes
2answers
208 views
Is “login.ini” a reserved name?
I store the MRU of logins to my application in a file called login.ini and I save it in widnows application folders.
I noticed that on some systems — I don't know why; I cannot find a common cause — ...
3
votes
6answers
1k views
How to initialise a C program using file, environment and/or command line?
In C, how to configure the initial settings for some program, using key-value pairs, with any or all of: a plain text configuration file, environment variables, and options on the command line. Also, ...
2
votes
3answers
163 views
How to preserve application.ini paths using Zend_Config_Writer_Ini
I'm currently working on a build system in Phing that takes a Zend Framework project template and configures it according to Phing parameters. One problem that I've come across is when using ...
2
votes
2answers
271 views
Where to save INI file in ASP.NET web service application
I have written a web service application, in that I have created an INI file in order to save all the server URLs required, but I couldn't access that INI file whenever I am going to access INI file ...
2
votes
2answers
298 views
check inifile exist delphi
How can I check if an INIfile exists? in a specific path and under a specific name?
2
votes
2answers
985 views
How to read custom values from INF file in Inno Setup?
Setup programs created with Inno Setup could read an INI file through /LOADINF option. Is it possible to read custom variables through this INI file? Is there a function to get the name of the INI ...
1
vote
1answer
120 views
Is there an open source, web-based config editor for editing valid php-style ini file?
Cpanel has some cool config editors that grab an .ini file, stick it all in a web form...it spits out in plain text all comments, then offers an inline text input for valid lines...so a user can ...
1
vote
2answers
370 views
PHP parse_ini_file TC_CONSTANT warning
I've got a weird issue, weird as in nothing comes up on Google. I'm trying to parse an ini file full of HTTP status codes, StatusCodes.ini. I've tested in three different environments, locally (WAMP) ...
1
vote
1answer
91 views
Are there any tools for modifying INI style files from shell script
I'm building a custom package of vnc and would like to ensure the xdcmp settings of GDM are enabled in the package post install script. The gdm.conf file is an ini style one, i.e.:
[section]
var=name
...
0
votes
3answers
60 views
Preventing WritePrivateProfileString going to the registry
Is there any way to disable WritePrivateProfileString from writing to the registry and instead use the ini file that we provide to it? I see from the MSDN that you can disable file writes and ...
0
votes
1answer
76 views
Eclipse 3.6.X setup for m2eclipse
I've tried many configurations, but I keep getting the following error upon opening eclipse:
Eclipse is running in a JRE, but a JDK is required
I've tried following the instructions in the ...
0
votes
4answers
426 views
How could read application.ini on controller using zend framework
I have these lines in my application.ini
how can I read user in my contrroler
resources.doctrine.dbal.connections.default.parameters.driver = "pdo_mysql"
...
0
votes
1answer
485 views
Word vba - Read all values from INI file and put in array
Ok, so I've got a bunch of Word templates that on Document_New reads the registry for some values and inserts these into bookmarks in the document. The way I've done this until now is to first read ...
0
votes
0answers
343 views
boost::program_options: parsing multi-valued options in ini-files in a single name-value pair
if I specify
ip_addresses=monkeys
ip_addresses=baboons
parse_config_file creates multiple strings resulting in a std::vector< std::string> as output.
I want to list multiple strings on a ...
0
votes
1answer
375 views
Using scripting.filesystemobject in javascript and checking for locked files
I have some code that reads from an ini file in Javascript, using activex filesystem objects.
This isn't particularly efficient but does the job, reading the whole file into an array, appending any ...
0
votes
6answers
628 views
How can I write to a single xml file from two programs at the same time?
We recently started working with XML files, after many years of experience with the old INI files.
My coworker found some CodeProject sample code that uses System.Xml.XmlDocument.Save. We are ...
0
votes
2answers
246 views
Access ini file from documents for reading
I have put a config ini file "config.ini" for reading and writing to from my C# program, the thing is, if the user has UAC enabled then for some weird reasons the program doesn't read or write to the ...
0
votes
2answers
207 views
Match INI Section Blocks
I'm using regular expressions to try to match section blocks in an INI file. I'm using the recipe given in the book Regular Expressions Cookbook, but it doesn't seem to be working for me.
Here is ...