Config files configure the initial settings for some computer programs

learn more… | top users | synonyms

0
votes
0answers
4 views

Spamassassin not reading correct config file

I am editing the local.cf file in /etc/mail/spamassassin and the changes are not effecting incoming mail The tests run correctly when I run the following command in terminal: # spamassassin -t -D ...
0
votes
1answer
59 views

Apache Server: Editing httpd.conf file (permission denied)

So I just recently downloaded Apache server with all of its files (httpd, apr, apr-util, pcre) following the instructions dictated here: http://httpd.apache.org/docs/2.4/install.html However, after ...
0
votes
3answers
35 views

Apache: Inline PHP not working on Linux [SOLVED]

I am having trouble getting my PHP to work for my Apache server. I am running Oracle Linux, and used yum install php + yum install httpd to get my PHP and Apache. I have scoured the internet and ...
0
votes
1answer
15 views

Unity section in .config file using Protected Configuration Provider

In my app config I'm using RSA Protected Configuration Provider, everything works fine when using it with connectionStrings section but NOT with unity section in app.config. Whenever I try to make ...
-2
votes
1answer
35 views

Dynamic base URL CodeIgniter [closed]

When I creating a PHP project with CodeIgniter, There is troublesome that I must change. That's $config['base_url']. How can I set it dynamically?
0
votes
0answers
12 views

Log4r - ouput is unodered

I'm a newbie in Rails, and I had a problem with my Rails project. I used Log4r for my logger. I also used config for Log4r at How to configure Log4r with Rails 3.0.x? . But when I send some request at ...
1
vote
3answers
39 views

Turning application's features on/off

I have several features in my .net application that I would like to be able to turn on/off. As I understand there several options available: Config file Registry Custom xml file I would like to ...
0
votes
1answer
13 views

Mysql slow.log user specific

I use a slow.log logging on my MySQL server to catch bottlenecks in my scripts, but at the same time I use phpmyadmin on this server. My scripts and phpmyadmin has different MySQL user accounts and ...
0
votes
0answers
9 views

Mysql slow.log with noindex, but without tmp_tables

Is it possible to change anything in config to logging in slow log queries without index use, but not in the temporary tables. I have a lot enough subquerys, so it creating anytime temporary table, ...
0
votes
1answer
27 views

Parse Python Configuration File for Java Programs

I have not found anything of this sort on Google and would like to know if there is a quicker way of doing the following: I need to parse build scripts for Java programs which are written in Python. ...
-1
votes
0answers
24 views

high load from php-fpm with nginx [closed]

i have problem with php-fpm and nginx high load from php-fpm all day i don't know why my nginx config #user nobody; worker_processes 54; error_log off; #pid logs/nginx.pid; events { ...
2
votes
3answers
38 views

Efficient way to manage a git repository for local config files

I store my config files (~/.bashrc, ~/.emacs, ~/emacs, etc.) in git. The way I configured this was simply to add a git repository in the home dir. I found this approach has some problems: git gui ...
0
votes
0answers
26 views

Extend config file shared between 2 applications

Simplified my problem is that i need to break out a part of an large application to be able to use it as a common framework for other applications. The problem is the config file(s). I know it's ...
-4
votes
1answer
50 views

how to modify php config class file like in joomla?

for example, i have "config.php": <?php class Config { public $var1 = 'ex1'; public $var2 = 'ex2'; } ?> and i have "index.php" <?php include ...
0
votes
2answers
117 views

RequireJS and common config

Is possible to have requirejs config at one place and reuse it in modules? such as main.js: requirejs.config({ baseUrl: "static/js", paths: { "jquery": ...
0
votes
1answer
49 views

WCF: The InnerException message was 'Maximum number of items that can be > serialized or deserialized in an object graph is '65536'

I know many have posted the solutions about this, I have tried all of solutions that were posted on the internet but those didn't work for me. In this scenario, I want to consume WCF service from a ...
0
votes
0answers
36 views

nginx try_files with ruby on rails cached pages

I've noticed that nginx is not serving the cached index.html page on the root domain. ex.) http://dev.website/ should serve up /rails_app/public/cache/index.html, but defaults to rails app serving ...
1
vote
1answer
43 views

In the Grails configuration how do I access variables in other environments?

If I have a list environment variable in grails in one environment, how do I modify it on the cascade to other environments? For instance, in my quartz configuration I added the following, quartz { ...
0
votes
1answer
36 views

Kohana - database config per environment

I want to set in my bootstrap the right config I will use functions of the environment. I try to use Database::instance('my_conf'); or Kohana::$config->attach(new ...
0
votes
0answers
21 views

Destroying Web Configuration Object in C#

How do we destroy web configuration object after the following? Configuration config =WebConfigurationManager.OpenWebConfiguration(configPath); config.Save(); I'm having The configuration file ...
1
vote
1answer
26 views

Avoid Hidden Characters in Config Files

I have a project which has build up with VB.NET. During the file transfer to server my .config file is changed automatically. When I have open it with notepad++, I realized that, there are some line ...
0
votes
3answers
36 views

Common config file for php class and use them in functions

i use common config file for admin and frontend template now i want to include it in function file how to include it once and use it in all file. class frontproduct{ function fetchrange(){ ...
0
votes
0answers
7 views

open multiple terminals by loading a config file

Recently I am working on a network project, I need open multiple terminals to simulate network topology, but I find that it's so boring to open terminals and enter commands handly. I want to ...
0
votes
0answers
48 views

c# Loading connectionString from file on runtime

I have an application (Console) already in place which is reading connection string from the bin directory. We are planning to pass a directory path from command line which would point to the ...
2
votes
7answers
521 views

NLTK fails to find the Java executable

I am using NLTK's nltk.tag.stanford, which needs to call the java executable. I set JAVAHOME to C:\Program Files\Java\jdk1.6.0_25 where my jdk is installed, but when run the program I get the error ...
0
votes
1answer
28 views

log4net watching function does not work if create appender in code?

I want to set a Rolling Appender dynamic in code rather than in config file. So I have a function that will return log4net.ILog <Assembly: ...
0
votes
1answer
22 views

No php.ini after installing php5.1 on debian 7.0

Lately i've been struggling with installing zend optimizer on my machine (since i needed that for irrelevant purposes), but i found out that it works best on php 5.1. So i get one from HERE and zend ...
0
votes
1answer
23 views

How to read and parse gitconfig file with node.js?

[user] name = Alvin J. Alexander email = [omitted] [merge] tool = vimdiff This is what ~/.gitconfig file looks like. I've never encountered such data objects before. Does ...
1
vote
2answers
60 views

How to convert String returned by prop.getProperty() into Integer using java

I am trying to read a config file and I want to use that properties value in some algebraic operations. So I need to convert the string returned by prop.getProperty(String str) into an integer. I ...
0
votes
1answer
23 views

How to run function of another controller with base_url specified in config.php

I have controller welcome below that redirect to function of another controller in controllers/auth/login.php function __construct() { parent::__construct(); ...
0
votes
0answers
16 views

why colours of code is not changed according to the theme setting in Xcode?

In Xcode, i set the theme as default from fonts and colours but the code's colour are not displayed according to setting, only keyword's colours are changed according to setting, how can i overcome ...
-1
votes
1answer
30 views

global results across different packages defined in struts configuration file

I would like to create a global-results across different packages which are under different namespaces. Can I know the conventions that required to follow in struts config file?
1
vote
2answers
481 views

Branching: different config files for release/development

I've inherited a project and we are using git. We have a number of environments (dev, test, prod). The previous team basically recreated everything on each instance, using the same accounts, ...
1
vote
0answers
25 views

Tiny MCE Editor: Create preset blocks of text to insert from toolbar

Does anyone know how I create preset blocks of text to insert from a list in the toolbar? I have an email API that I have integrated with a CMS and an admin can create a new email message to go out ...
0
votes
1answer
58 views

fortran namelist read/write with python

I would like to know if there is a library in python to easy read and write values of fortran namelist file. if not is there a way to execute fortran command in python ie a kind of call ? ...
0
votes
1answer
22 views

codeigniter custom config file calling config data

i've a file @ /config/form_validation.php i've another file @ /config/ion_auth.php i tried to get the 'ion_auth data' in form_validation but failed: ...
5
votes
2answers
10k views

WCF 'A Call to SSPI Failed, see inner exception'

I had a self-hosted win service WCF installed and running at one point. Naturally, I had to make some changes. So I changed the base address back to my local workstation and made the changes. It ...
0
votes
0answers
16 views

Bitmap.Config enum missing enum types

I would appreciate your expert input on the following problem: I have 8bit index pngs and iwould like to decode to bitmap as such. There are only three Bitmap types, A8, ARGB4444, ARGB8888. Why not ...
6
votes
4answers
6k views

Read a config file in BASH without using “source”

I'm attempting to read a config file that is formatted as follows: USER = username TARGET = arrows I realize that if I got rid of the spaces, I could simply source the config file, but for security ...
0
votes
0answers
10 views

loading pkcs11 config files with same name attribute

I have two pkcs11 config file as follows: file1.cfg : name=AME slot=0 library=C:/Program Files/SafeNet/Protect Toolkit C SDK/bin/sw/cryptoki.dll file2.cfg : name=AME slot=1 library=C:/Program ...
-1
votes
0answers
9 views

Can not reset debug web page to index [closed]

A week ago I set my visual studio asp web net 2010 framework 4.0 c# application to open on the page I was working on and now I get an error. Can't find page. I assume that is because the user hasn't ...
0
votes
0answers
58 views

wix XmlConfig: is it possible to remove all child elements within a parent node

In using wix, it's come up a few times that I'd like to completely replace all the child elements of a parent, but without the child elements being necessarily known. So far I haven't found a way to ...
3
votes
3answers
746 views

Config file parser in Fortran

I would like to be able to use a simple configuration file to pass parameters to my program. This configuration file would consist of a list of arguments with values that can be of different types ...
0
votes
1answer
32 views

Qt Creator: unit-test: is it possible to have four ways of building a code (debug, release, debug|release and Test)

I am working with unit-test and I managed to create two projects in Qt-Creator: a unit-test project and Application project. Compiling both of them separately, I am very happy with both projects. ...
0
votes
1answer
350 views

Android Galaxy S3 icon not appearing with phonegap build

I have been working on this issue for several days now. I know there are various suggestions on the solution, but dare I say, I've tried them all. Bottomline, there is no icon appearing on my Galaxy ...
0
votes
1answer
31 views

Quartz .NET Config Executable Locations

I am in the process of setting up a new set of jobs and triggers. Is there any way to put the application files into a different or sub directory from the Quartz.Server config file by adding a path ...
-1
votes
1answer
9 views

What is the use of Appliaction preference plugin by Tue Topholm / Sugee

I am creating a Phonegap application and also I am using some plugins. Recently I found Appliaction preference plugin by Tue Topholm / Sugee (here). I checked that in detail. But I wonder how can I ...
0
votes
0answers
17 views

Apache: mod_disk_cache setup for specific url pattern with LocationMatch

i'm trying to setup mod_disk_cache for a url pattern. Server runs Apache/2.2.22 Wanted: All requests to 'domain.com/location/anyHtmlFile' should be served from cache. Config: CacheEnable disk ...
1
vote
2answers
150 views

how can i override a typesafe config list value on the command line?

i have an application.conf file with a structure like the following: poller { datacenters = [] } i would like to override datacenters on the command line. for other configuration keys whose ...
0
votes
1answer
38 views

vbs and csv config file

I'm trying creating a hta script using vbs and a csv config file in order to have a launcher with delays between each launch. then, it works but with some problems: When I run the hta file, all ...

1 2 3 4 5 23