Environment variables are a set of dynamic named values that can affect the way running processes will behave on a computer.

learn more… | top users | synonyms

0
votes
1answer
16 views

Extract Env Variable from an Appfog PHP app

In the past I have successfully setup phpmyadmin in Appfog. I added username and password credentials to phpmyadmin's Env Variables using the Appfog console. Phpmyadmin picks up those Env Variables ...
0
votes
0answers
55 views

Why are environment variables being “lost” when running a jar file

I have a Java app which picks up a couple of Windows environment variables to run correctly. In Eclipse it does run correctly. By the way, these are dependencies on Ghostscript and Tess4J in case ...
0
votes
2answers
19 views

Checking if variables are defined in a makefile

I have a GNU Makefile (version 3.81) that looks like the following: .PHONY: SPOneDot SPOneDot: ifndef X X=0.05 $$(info X undefined, changed to $X) endif ifndef Y Y=0.05 ...
0
votes
1answer
24 views

How to set environment variables in vs2012?

How do I set environment variables in Visual Studio 2012? For example, I need to set this: $(MyDir) = "c:\my_dir"
2
votes
0answers
22 views

Reading Environment specific variables from test file Compound.js

I'm working on a compound js app. In environments/test.js I have exported a variable as follows: app.host = "http://mysite.com" When I run the app as below: NODE_ENV=test node . I could access ...
0
votes
0answers
8 views

Documentation : Using Enivronment variable in <img src=“”></img>

I am trying to embed a diagram in image format for generating documentation using SandCastle. However I can't figure out whether its possible to use an environment variable as part of the xml ...
0
votes
1answer
15 views

environment variables in virtualenv's postactivate using mod_wsgi

Hope you're well. I've added a couple of environment variables to my virtualenv postactivate file, for example: export DATABASE_USER="root" export DATABASE_PASSWORD="12345678" I then assign those ...
-2
votes
1answer
31 views

Setting Environment Variables to Use Command Prompt [closed]

I wish to know if there is any method like for eg in java we open advanced system settings create a new variable path and put in "C:\Program Files\Java\jdk1.7.0_09\bin" then add another variable ...
0
votes
1answer
20 views

Ruby on Rails: Do not use database for specific environment

How can I disable the use of a database within a specific environment. I want an environment to purely serve images which does not require a database. A different environment will do the file ...
0
votes
1answer
13 views

How do you set a custom environment variable (htaccess) based on device?

How would you perform a simple mobile browser check and store the resulting boolean in an environment variable in .htaccess so that PHP can do a simple DEFINE('ISMOBILE',(env check ? true : false)); ...
0
votes
2answers
53 views

Making the PATH and other environment variables available in emacs

Working with emacs in OSX can some times be troubling. I interchange with using the Terminal.app application and the emace shell both of these use bash, and both seem to work, I do however have the ...
0
votes
1answer
20 views

“Unable to locate tools.jar” while the environment variables are correct

I want to configure my PC (Windows 7) so to use phonegap 2.7.0 and create an android application so according this tutorial I m confirured the enviroment variables. Below are the variables we need ...
0
votes
1answer
5 views

How do I centrally configure Fog credentials using environment variables?

Other questions answer how to open (and save) a Fog connection with ENV variables, or how to configure Carrierwave with ENV variables, but I want to set the Fog credentials universally and in one ...
0
votes
1answer
18 views

Where do I put statis ENV variables in Rails?

I currently have the following in my application_controller, but this seems the incorrect way to do this, considering these variables will only be set one time and will not change throughout the ...
1
vote
1answer
36 views

new File() with enviroment variables in Java

How to get a File java object from its path string with enviroments vars? For example: new File("%SYSTEM_ROOT%/file.txt") or new File("${SYSTEM_ROOT}/file.txt")
0
votes
1answer
17 views

Substitute for CreateDirectory or Path.Combine in Windows 8 apps

CreateDirectory and Path.Combine doesn't seem to work on Windows 8 applications. How could I substitute it? My first intention was to create a folder inside %APPDATA%, but ...
0
votes
0answers
26 views

Zsh and environment variable : how to track changes? [closed]

How can I control or trace the mutations made on my zsh environment ? Here is the problem : When I edit a brew formula, it uses vim as an editor. Which makes sense as I have ~ ❯❯❯ env EDITOR=vim ...
0
votes
1answer
23 views

Why does Ant recognize some env vars but not others

I have 2 env vars defined: myuser@mymachine:~$ echo $ANT_HOME /home/myuser/apache/ant/1.8.4/apache-ant-1.8.4 myuser@mymachine:~$ echo $ANT_IVY_HOME /home/myuser/apache/ivy/apache-ivy-2.3.0-rc2 I ...
2
votes
2answers
51 views

Running gvim from MSYS — how to avoid/change MSYS enviroment variables?

When I run gvim from MSYS, things go wrong during initialization. Namely, gvim can't find the initialization files that are in 'C:\Documents and Settings\username\vimfiles. [Specifically, gvim ...
1
vote
2answers
62 views

Export a variable to the environment from a bash script without sourcing it

suppose that I have this sript export.bash : #! /usr/bin/env bash export VAR="HELLO, VARABLE" when I execute the script, and try to access to the $VAR I get no value ! echo $VAR Is there any ...
0
votes
1answer
16 views

Phusion Passenger set Environment for subdomain using same document root

I have a subdomain "staging.website.com" and "website.com" which I want to use the same app for but in different environment modes "closed" and "staging". I have the following vHosts set up in ...
0
votes
0answers
18 views

Jenkins Ant Skript Variables

I am using Jenkins to start an ant script. Some variables i define using the EnvInject Plugin. I set them in the Properties Content field of the EnvInject Plugin and pass them afterwards to the ant ...
0
votes
0answers
11 views

methods call from swing gui rather than Java Unit test causes character encoding issues

I have an application that reads data from an access database via jdbc-odbc bridge. When I call my "getData" method from a unitTest everything is fine but when I call it from a swing interface the ...
0
votes
2answers
34 views

How to get python os.environ parameters from cgi script?

When I use os.environ.keys() in command line I get different environment variables than in cgi script. Is there a way to get python enviroment variables through cgi script? Using subprocess.Popen ...
0
votes
3answers
41 views

What environment variables are passed go Jenkins when using the Gerrit Trigger Plugin?

I'm using the Gerrit Trigger Plugin to kick off Jenkins builds, but haven't found a good place where all of the environment variables are documented. Does such documentation exist?
0
votes
0answers
58 views

Issues with loading solution (.sln) file using c#

I am trying to load solution file using c#. I am doing this using DTE object. Following is the code snippet to achieve this. DTE DteObject = new DTE(); DteObject.Solution.Open(@SolutionFilePath); ...
0
votes
2answers
90 views

Where does Ant set its 'java.home' (and is it wrong) and is it supposed to append '/jre'?

Okay, I'm using Ant version 1.7.1 (default install) on CentOS 6.3: [theuser@dev-ingyhere ~]$ ant -version Apache Ant version 1.7.1 compiled on August 24 2010 [theuser@dev-ingyhere ~]$ cat ...
0
votes
0answers
7 views

Possible to dynamically generate Apache ENV vars that create RewriteMap names?

Following the Apache RewriteMap documentation, creating and using a RewriteMap at minimum requires two directives: RewriteMap examplemap txt:/path/to/file/map.txt RewriteRule ^/ex/(.*) ...
0
votes
2answers
39 views

How to set the environment variable for PHP in Linux?

I'm implementing MediaWiki with the Oracle Database and therefore I need to add TNS_ADMIN variable to my PHP startup environment. Q1: How do i add TNS_ADMIN variable to PHP Startup environment? Q2: ...
3
votes
1answer
46 views

Difference between -D and -d environment variables in Java

I understood how environment variables works in Java, setting -DVariable and getting with System.getProperty("Variable"). But i've seen sometimes examples with "-d" variable using lowercase, and I ...
1
vote
2answers
53 views

How does heroku with buildpacks handle PATH?

I'm using the heroku-buildpack-r and heroku-buildpack-ruby in concert with heroku-buildpack-multi. Everything installs correctly and R works locally. # .buildpacks ...
0
votes
1answer
42 views

How to specify which Perl bin to use

I have multiple versions of Perl on my Windows pc. Here's the version I want to use when I type perl program.pl ... C:\Perl64\bin Do I use #!? Thanks!
0
votes
0answers
16 views

Creating folder alias like %SystemRoot% in windows 7 [migrated]

I'm trying to create a shortened path to a directory that is nested in a lot of directories (ie C:\Users.......................................\TestApp\Data\32\TutorialData which is 80+ characters to ...
0
votes
1answer
38 views

How to detect if a Bash environment variable has been read?

I have a script that is supplied with configuration via environment variables. Because the configuration is manually edited it is possible for typos and variables that are never used to be added to ...
2
votes
2answers
41 views

getenv - Environment variable on Mac OS X and Linux

getenv is used for accessing environment variables on Mac OS X and Linux, it takes char* as input. Does that mean that I cannot store UNICODE strings as value in these environment variables on these ...
0
votes
0answers
47 views

Finding a script name with an Aptana 3.4 snippet

Using a snippet keyword in a JavaScript editor, I want to be able to slice off the file extension (e.g. '.js') in order to derive a class name from the file name, and seed some comments and functions ...
0
votes
1answer
26 views

.htaccess and environment variables (do X if Env isnt)

Morning, I've got 2 entries in my .htaccess file, and I want to make them a little more dynamic. Firstly I've got a non-www to www. redirect <IfModule mod_rewrite.c> RewriteCond %{HTTPS} ...
0
votes
2answers
30 views

I want to apply a modification to the path environement system variable without rebooting or restarting the cmd owing to c#

I am using a C# dll which I am using from Installshield to add path of Oracle to the Path environement system variable to be able to connect to Oracle database owing to the instant client. Whan I run ...
0
votes
4answers
54 views

Issue with JAVA_HOME

i am trying to run sonar runner, i have the bat file in my project directory and when i navigate to it via command promptt and try and run it i get an error message saying ERROR: JAVA_HOME exists ...
-1
votes
1answer
15 views

Installing Python wrapper for METIS: Cannot locate METIS_DLL shared library

I am planning to use Metis for drawing some networks and graphs using Python. I downloaded Metis from here. For installing the Python wrapper, I followed the instructions given here, but when I run ...
0
votes
3answers
36 views

why eclipse or cmd console caches OS env variables?

I want to get an OS(windows XP) env variable, my code is below(jdk 1.6): public class TestEnv{ public static void main(String...args){ System.out.println(System.getenv("catalina_home")); } } ...
1
vote
1answer
50 views

How to install XcodeColors with Xcode 4.6?

Using CoconutKit, I wanted to see all their logs in color. Sadly, I did not get XcodeColors to run. Supposedly, I was to copy XcodeColors into the Xcode plug-ins path: /Library/Application ...
1
vote
1answer
92 views

why System.getenv(“CATALINA_HOME”) returns null?

I define a system variable CATALINA_HOME which refers to tomcat installation directory in my OS system(windows 7 ultimate 64 bit), now I want to get it by java, my code is below: ...
0
votes
2answers
24 views

setting environment variables using export are not accessible after relaunching command prompt in Ubutu

I just downloaded maven, to install it, I am setting environment variables using command line as described in documentation export M2_HOME=/home/vishal/java/install/apache-maven export ...
2
votes
1answer
67 views

Cannot get environment variables in Django settings file

I'm trying to read some environment variables in Django settings, which i have defined in /home/user/.bashrc (and latter in /etc/bash.bashrc ) , but all i get is a KeyError exception. I know my ...
2
votes
2answers
28 views

Java's File.pathSeparator in Perl

Is there a module or constant somewhere in Perl that gives the equivalent of Java's File.pathSeparatorChar? I've been looking everywhere but the name easily brings up things like / and \, used to ...
0
votes
1answer
48 views

Passing Apache Environment variables to gunicorn through mod_proxy

I'm not entirely sure this is the right way to skin this cat, so feel free to propose completely alternate solutions. I have a Django site running on gunicorn behind apache's mod_proxy (with the ...
0
votes
0answers
20 views

How to load a building environment from file on Eclipse

I work on various Fortran projects using Eclipse (Juno Service Release 1) and Photran, under Debian 5. These projects are built by the following commands: csh /* We work on ...
0
votes
4answers
82 views

Execute Batch Script From Environment Variable

I've set an system environment variable called find which points to a batch script. I did this so that in Win command prompt i could type %find% and it would execute my script. It works the only ...
0
votes
1answer
18 views

mod_rewrite changing address bar for no reason

I have an .htaccess file and when ever i type www.example.com/demo/index.php it keeps redirected me in a loop. I'm really confused as to why this is happening. # Do not remove this line, otherwise ...

1 2 3 4 5 36