-1
votes
1answer
52 views

Get php to read from an XML file [closed]

I'm a PHP beginner and need help with a little coding problem: class _settings_file { /** * @param string $file * @param array $settings array($settings_group => $settings_name) It ...
1
vote
3answers
62 views

How to create and access a shell config file from a shell script? [duplicate]

I am working on a shell script that when first opened asks the user for some info. This info needs to be stored on a config file for future use so that the user doesn't have to answer the same ...
0
votes
1answer
116 views

Php text field edit file

Iv have made a system that allows you to edit a config.php file through a text field on a web page But the textbox shows the whole files contents is there a way I can limit it to only show part of a ...
0
votes
0answers
13 views

Reading a string from old .config file and write them to new .config file

I can usually find my answers from searching but having a hard time with this one. I have an app that im trying to build an update installer for. I have to replace the old config file with a new ...
1
vote
2answers
71 views

How to find and replace a line in multiple files with PHP

I want to create a installer for my current project, that automatically modifies a dozens of config files. So if the form was sent, the PHP script should look in which config file the searched option ...
0
votes
0answers
105 views

PhoneGap Config - accessing local files

I wanted the app to grab an image from the local files and upload it to the server. Everytime I click 'browse'..nothing happens, I can't select anything to upload. I thought it may have been the ...
0
votes
1answer
95 views

Using a config file from within a php class

I am kind of new to PHP OOP, but I have a fairly decent understanding of the concepts behind OO. I want to have a config file that has general application data that can be used from throughout the ...
-1
votes
1answer
328 views

Error occurred loading a configuration file: Access to path c:\Program Files (x86)\… denied

I have an application which I deploy using a setup program in Visual Studio 2010 on Windows 7. The program deploys and runs fine on Windows 7 and XP, but when I deploy it on a Windows 8 system I get ...
0
votes
0answers
87 views

Saving wxListCtrl data to file

i was wondering how to save the data from a wxlistctrl in my addressbook program into a text file or config file so that when the program starts someone could load their data. this is what i have so ...
-1
votes
2answers
197 views

having difficulties parsing the .cfg file with php [duplicate]

Possible Duplicate: Converting ereg expressions to preg I am totally new to parsing a cfg file to php. Still tried to search couple of website and i found this exmaple. But it has some ...
0
votes
0answers
100 views

How to configure apache using mod_rewrite to get content of a file

I need some help. I need to install on windows and configure Apache (using mod_rewrite I guess), for example,by the link 127.0.0.1/server/api/config I should get content of config file which I will ...
0
votes
2answers
428 views

reading config from file

I try to read a config file and assign the values to variables: #!/usr/bin/env python # -*- coding: utf-8 -*- with open('bot.conf', 'r') as bot_conf: config_bot = bot_conf.readlines() ...
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
955 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
4answers
88 views

Java Create Configuration-like File

I am using Robocode to develop GA tanks that evolve to give better performance (achieving highest fitness levels) and in order to do that I need to store information about each tank in one file. The ...
0
votes
2answers
108 views

TexBox, Uri & Classes

I use This to create a Config file generator, in other C# Form project I add the ini Class of the Config file generator project, create 2 not visible textboxes and use the ReadValue of the Config ...
0
votes
3answers
102 views

Perl, Reading a single variable from multiple files

I have to grab a configuration directive from multiple configuration files for a series of identical web applications, each in their own folders. I have the code to step through and open each file, ...
0
votes
1answer
146 views

What is the name of this file format (cfg file of a AVM Fritz!Box VPN server)?

I want to write a tool to generate and modify the cfg file of the VPN server that runs in the AVM Fritzbox router. To be able to search for a parser - do you know the name of this file format? ...
2
votes
1answer
3k views

Nginx Serving static large file

Simple question http://mysite.com/bigFile.avi #this file is 800Mb when I use this link and download the bigFile.avi from my browser, My Nginx server jumps to 100%CPU load during the download ...
0
votes
1answer
776 views

Web.xml:welcome file displayed incorrectly

Welcome file is not displayed correctly on hosting. web.xml: <servlet-mapping> <servlet-name>Faces Servlet</servlet-name> ...
0
votes
1answer
487 views

jw player it is not working if i use a config file

If i use player.swf?config=http://example.com/embed/video.php?id=weILNyHEqmI with the code: <config> <link>http://example.com/</link> ...
0
votes
2answers
72 views

config file for a web server

I have written a simple web server in C. I want to write a config file that contains details like web_root="rood_directory" max_header_sizq="1024" .....etc How to and what are best practices to ...
0
votes
3answers
185 views

file reading in python

So my whole problem is that I have two files one with following format(for Python 2.6): #comments config = { #comments 'name': 'hello', 'see?': 'world':'ABC',CLASS=3 } This file has ...
1
vote
4answers
223 views

file reading in python

I need to read the file like below: config = { 'name': 'hello', 'see?': 'world' } using keys like name and see? ,but I don't want to hard code the values in script.And how to deal with more ...
1
vote
1answer
965 views

Form_validation isn’t using rules from config file (CodeIgniter 2)

My form validation isn’t using the rules in a config file in CodeIgniter 2. I’m accessing the form at /admin/people/add and /admin/people/edit/id and submitting to /admin/people/save. When I submit ...
1
vote
3answers
505 views

C# Creating a custom control

I need help creating a .dll file from a custom control so that it can be used on other projects. This is the first time I am doing this, and I couldn't find much help via google so help would be much ...
0
votes
3answers
274 views

C# Reading from a custom file

Okay so, I have read that .INI files have become obsolete now and the .NET Framework creators want us to use .XML files. However, I feel that it would be difficult for some of my users to use .XML ...
2
votes
2answers
2k views

Does Qt have a way of storing configuration settings in a file?

Is there a recomended way of saving my application's settings (like user selections, window size, postion etc.) in a file (ini or any other format) using Qt?
2
votes
1answer
424 views

Better suggestion for external config file

I am currently using xml as a config file for my silverlight application. I have no problem reading the file, but now that I also require to update the file through web(preferably silverlight as will ...
0
votes
1answer
197 views

SharePoint document library problem using .config extension

If I upload files with the .config extension to a SharePoint document library, clicking on them from a browser gives me the message: XML Parsing Error: no element found Location: ...
1
vote
4answers
866 views

Python+parsing custom config file

I have a quite big custom made config file I need to extract data from once a week. This is an "in house" config file which doesn't comply to any know standard like INI or such. My quick and dirty ...
0
votes
4answers
308 views

configuration file management for .net applications

We are having 7 different components and 7 different enviournments where we install all of these components. So when these components are installed on these different env there are chances that we ...
9
votes
7answers
3k views

Fastest way to store easily editable config data in PHP?

What is the fastest way to store config data in PHP so that it is easily changeable (via PHP)? First I thought about having config.php file, but I can't edit it on fly with PHP, at least not very ...
0
votes
1answer
9k views

Could not find a part of the path

Hey I'm using the ExeConfigurationFileMap class's OpenMappedExeConfiguration method to open a config file. The config file is used by two programs in the same directory. Everything is working fine on ...
5
votes
5answers
16k views

C# Configuration Files

Okay, so a while ahead I posted how to read other config files of other programs (here is the link Previous Post. I managed to do it. But now there is another problem. The scenario is like this, I ...
2
votes
4answers
1k views

Config file in c#

I have a UserControl Library solution which has the following UserControl ---UserControl project ---UserControl Test Project IN my test project, I am able to add my usercontrol to the ...
6
votes
9answers
3k views

SVN: How do I maintain my local config.blah file?

On the SVN server, there is a file called config.conf. I have a local version called the same thing (in the same place). How can I make sure that my local config does not get overwritten, nor checked ...