ini Questions

16

Greetings fellow developers, I am trying to use composer for a PHP project of mine on a development server I recently booted up and for some reason I am unable to. I successfully installed composer...
Herbalist asked 12/7, 2017 at 6:2

5

Solved

I am facing a strange problem. I have set up everything in php.ini file. But i can't get any errors showing up in the browser. I googled to set up the .ini file and did all the required things. But...
Galvanotropism asked 18/1, 2013 at 12:32

10

Solved

I need to read, write and create an INI file with Python3. FILE.INI default_path = "/path/name/" default_file = "file.txt" Python File: # Read file and and create if it not exists config = ini...
Xl asked 16/1, 2012 at 17:54

19

Solved

Is there any class in the .NET framework that can read/write standard .ini files: [Section] <keyname>=<value> ... Delphi has the TIniFile component and I want to know if there is any...
Hurley asked 20/10, 2008 at 9:37

34

Solved

I have a parameters.ini file, such as: [parameters.ini] database_user = user database_version = 20110611142248 I want to read in and use the database version specified in the parameters.ini fi...
Feuillant asked 11/6, 2011 at 22:7

7

Solved

I have a below properties file and would like to parse it as mentioned below. Please help in doing this. .ini file which I created : [Machine1] app=version1 [Machine2] app=version1 app=versi...
Distend asked 21/3, 2018 at 6:53

6

Consider the following INI file: [TestSettings] # First comment goes here environment = test [Browser] # Second comment goes here browser = chrome chromedriver = default ... I'm using Python 2...
Besought asked 31/1, 2014 at 9:32

3

Solved

I have a config.ini file which contains some properties but I want to read the environment variables inside the config file. [section1] prop1:(from envrinment variable) or value1 Is this possib...
Came asked 16/11, 2018 at 0:17

7

Solved

I am using Alembic for migrations implementation in a Flask project. There is a alembic.ini file where the database configs must be specified: sqlalchemy.url = driver://user:password@host/dbname ...
Highams asked 17/6, 2016 at 20:58

21

Solved

On Mac OSX Mavericks using homebrew php55 whenever I run a a php command I get the following error message (everything runs fine it's just annoying) PHP Warning: Module 'intl' already loaded in Un...
Consecrate asked 24/9, 2015 at 15:13

2

I recently started using Vi Improved and being a Rainmeter Skin Specialist, when editing my .ini files I can't find a way to add syntax highlight for such files. I searched for a lot of time on sta...
Checkerbloom asked 22/7, 2021 at 6:6

2

Solved

I am using MySQL 5.5. It contains (commented) lines in my.ini: [client] #password = your_password If I uncomment "password" line, it does not see it, and allows me to connect with an emp...
Lederer asked 11/8, 2019 at 9:51

6

Everything I've found looks way over complex. It's almost like I just need to read a text file. ADAP.ini contains this, nothing else: http://xxx.104.xxx.226 APP=2.3.6 DLL=2.3.6 Using Powershell...
Olmstead asked 28/4, 2017 at 23:51

6

Solved

Are comments allowed in Windows ini files? (...assuming you're using the GetPrivateProfileString api functions to read them...) [Section] Name=Value ; comment ; full line comment And, is there a...
Happiness asked 4/9, 2009 at 9:42

12

Solved

I have a database Un-zipped size 50mb zipped size 7mb So when I try to import the database zipped(7mb) after few minutes it is throwing this error: Script timeout passed, if you want to finish ...
Unwish asked 12/9, 2017 at 11:37

3

Solved

In Python you can parse an .ini file and access the single values like this: myini.ini [STRINGS] mystring = fooooo value = foo_bar script.py import configparser config = configparser.ConfigPar...
Opalescent asked 15/1, 2016 at 15:8

2

Solved

Are there any security and/or performance implications to consider when allowing large file uploads in PHP? For example, these are the PHP ini settings I currently have set. memory_limit = 950M up...
Philippeville asked 24/6, 2014 at 2:58

19

I am using xamppserver for PHP development and want to edit the php.ini file; where can I locate it?
Etymon asked 31/5, 2011 at 9:8

3

Solved

I have an ini file similar to this [test] foo=bar and if we call this ini file as test1.ini How do I change the value of foo to foobarbaz for example using shell script. I have tried the follo...
Giaour asked 24/10, 2013 at 13:25

2

Solved

I wrote a simple bash function which would read value from an ini file (defined by variable CONF_FILE) and output it getConfValue() { #getConfValue section variable #return value of a specific v...
Felony asked 16/6, 2016 at 19:45

9

I'm trying to read an .ini file with the following format: [SectionName] total=4 [AnotherSectionName] total=7 [OtherSectionName] total=12 Basically I want to print out certain values from the .i...
Rump asked 19/5, 2010 at 13:55

1

I have been reading as much as possible about the php.ini file and i have found nothing about whether or not its bad/dangerous to not set the session.cookie_domain in the php.ini. We are in a prod...
Weston asked 15/8, 2013 at 14:19

2

Solved

Is there any way to write comments in an ini file using boost::property::ptree? Something like that: void save_ini(const std::string& path) { boost::property_tree::ptree pt; int first_value...
Odalisque asked 8/12, 2014 at 9:21

2

Solved

I want to edit the value of INI file. I use this script but It gives me error. Get-IniContent : The term 'Get-IniContent' is not recognized as the name of a cmdlet, function, script file, or oper...
Pfeifer asked 25/3, 2019 at 13:19

8

I don't care if it's JSON, pickle, YAML, or whatever. All other implementations I have seen are not forwards compatible, so if I have a config file, add a new key in the code, then load that confi...
Stancil asked 29/9, 2013 at 12:44

© 2022 - 2024 — McMap. All rights reserved.