Tagged Questions
2
votes
4answers
49 views
PHP ini vs array performance
I wonder what is faster:
loading/including a php file that contains some static data in an array within a function or
parsing an ini-file that contains the data and puts it into an arary
I need ...
0
votes
1answer
88 views
VBScript that Opens an ini file and a Config file in notepad
I work in a hospital environment and right now im doing PC deployments. Part of the deployment requires us to view 2 files on a network drive looking for information regarding the old systems. They ...
0
votes
3answers
50 views
Load data from config file with value from config file
I have a config.ini file with some values. One of them is the path to the root of my script. So in my js file i get the content from the config.ini file, but i have one big mistake. To load the data ...
0
votes
0answers
64 views
Traverse Zend_Form into Zend_Config ini file / Custom View Script
i have to use forms using Zend_Form (v1) without MVC environment.
Every form shoul have an custom view script /template.
My example using php-generation of forms:
index.php
$view = new Zend_View();
...
1
vote
1answer
286 views
Adding action helper path in Zend Framework 1.11 for namespaced (5.3) classes
Does anyone know how to tell Zend Framework 1.11 how to find my namespaced action helper classes? I'm using proper PHP5.3 Namespaces so not the normal My_Helper etc.
I would love to do this without ...
1
vote
2answers
483 views
How to handle Zend Framework End User INI/Config settings
I have searched and searched for this but I think my terminology isn't correct as it keeps giving me the application settings for the zend site rather than an application settings for the End User.
...
-1
votes
1answer
109 views
PHP Settings / Config File For Variables?
I'm currently working on a script for our linux hosting company. We need to store variables such as versions and last update checks in a config.ini file which needs to be accessed and written to ...
1
vote
2answers
511 views
Perl: Simple INI file info retrieval
I have a perl script that's reading an INI file like this:
[placeholder_title]
Hostname = 127.0.0.1
Port = 161
The library that I'm using for this is Config::Tiny.
Normally when reading the ini ...
2
votes
3answers
940 views
Perl: Iterating through INI files
I'm making a Perl script that needs to read and obtain the values of an INI file.
INI File Format:
[name]
Property=value
Example:
[switch_6500]
cpu=1.5.1.12.4
free_memory=1.45.32.16
...
0
votes
1answer
279 views
Need Simple way to load some Config Settings for App
Visual Studio 2010 C# .Net 4.0 Windows Forms App
I have several configuration setting that I would like to store in an XML file.
I want to load values from the XML file for: Background Color, ...
3
votes
3answers
971 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 ...
1
vote
1answer
65 views
Losing booleans when parsing *.ini-file using PHP
Just tried to make my own config handler in PHP, utilizing the native PHP parse_ini_file-function. I did just notice that all of my config entries where the value is a boolean - true/false are messed ...
5
votes
3answers
1k 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?
2
votes
3answers
617 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 ...
0
votes
1answer
367 views
How are INI files used today? [closed]
I really like the "INI" file format: Declarative KEY=VALUE, possibly embedded in named sections.
Further, I like the old "Make" style, where values set "higher" in the file may be interpolated into ...
1
vote
1answer
268 views
How to copy files with Makefile.PL and ExtUtils::MakeMaker?
I am developing a library and scripts in perl. For distribution I am using ExtUtils::MakeMaker, I have some configuration and data files in a directory called data in the distribution path, for ...
1
vote
3answers
946 views
php parse_ini_file oop & deep
I would like to make use of somehting like [parse_ini_file][1].
Lets say for instance I have a boot.ini file that I will load for further procedure:
;database connection settings
[database]
...
2
votes
1answer
1k views
How do I change the views scriptPath in the Zend Framework config?
Since there is absolutely NO DOCUMENTATION on the general config of the Zend Framework - which pisses me off sincerely! - I have to ask this here =(
I want to change the directory structure of my ...
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:
...
6
votes
2answers
767 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 ...
8
votes
6answers
10k 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?
4
votes
3answers
2k 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');
?>
