1
vote
3answers
3k views
eclipse ini configuration
Hello Friends
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 memo …
1
vote
1answer
51 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 comm …
0
votes
3answers
49 views
Need help with INI file in Powershell
Here is the deal, I am going through an INI file with some code. The idea is to return all of the categories found in the INI file with a regex, and then set at an arraylist = to r …
0
votes
3answers
62 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');
?>
0
votes
2answers
80 views
cannot change the php.ini file!
Hello
I have changed the php.ini file in the location (C:\xampp\apache\bin\php.ini) for Xampp and restart the server
I am sure it is the real php.ini file because I have checked …
0
votes
4answers
187 views
upload_max_filesize not changing
I am trying to increase the value of upload_max_filesize to 10485760 (10M).
I am using:
ini_set('upload_max_filesize',10485760);
This is always returning false and the upload_m …
0
votes
4answers
76 views
Is it possible to use inline comments for .ini files with PHP?
Is it possible and safe to use inline comments for .ini files with PHP?
I prefer a system where the comments are inline with the variables, coming after them.
Are the some gotcha …
1
vote
4answers
116 views
php.ini misconfiguration
I've narrowed my problem down somewhat.
When I run "error_log('hey');" from the command line it dumps to STDOUT. But if I run the same code from my web interface (Apache) it puts t …
18
votes
8answers
5k 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 unf …
2
votes
2answers
357 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 …
0
votes
0answers
19 views
ini file data show in Msflexgrid
I have Msflexgrid control on my form and need to display ini file data in it. Data in ini is as follows
[Connect]
T1=1
I1=192.168.0.12
P1=2000
.
.
.
T50=50
I50=192.168.0.12
P50=20 …
0
votes
2answers
220 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 documenta …
2
votes
3answers
196 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] => otherTi …
15
votes
10answers
1k 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 c …
0
votes
4answers
150 views
In Memory INI File Writer
Hello,
I have an MFC app which is wizard based. The App asks a user a variable number of questions which are then written to an INI file which is later encrypted when the user cl …
