Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 643 results for
getenv
- Page 1
Re: what is difference between os.getenv('PATH') and sys.path
Programming
Software Development
12 Years Ago
by snippsat
…://docs.python.org/2/library/os.html?highlight=os.
getenv
#os.
getenv
) and [sys.path](http://docs.python.org/2/library/sys… just Python in cmd(command line) to start Python. `os.
getenv
('path')` give me back all path that's in my…
Having trouble with getenv
Programming
Software Development
18 Years Ago
by Sacky
… it, the only solution to this that i found was
getenv
( "PATH" ), however doing this yields this: [QUOTE][Sat…
what is difference between os.getenv('PATH') and sys.path
Programming
Software Development
12 Years Ago
by krystosan
why their is a difference between os.
getenv
('PATH') and sys.path ?
Re: what is difference between os.getenv('PATH') and sys.path
Programming
Software Development
12 Years Ago
by Gribouillis
`os.
getenv
('PATH')` is the sequence of folders where the operating system finds executable programs. `sys.path` is the sequence of folders where python finds importable modules.
Re: Having trouble with getenv
Programming
Software Development
18 Years Ago
by Ancient Dragon
argv[0] contains the full path to the program. I don't think the PATH environment variable will help you because it contains a huge number of semi-colon separated directories.
Re: Having trouble with getenv
Programming
Software Development
18 Years Ago
by Sacky
Cheer, works fine now with some formatting: [QUOTE][Sat Apr 28 20:07:08 2007]C:\Program Files\Rockstar Games\GTA San Andreas\gtamp.cfg[/QUOTE]
Re: Having trouble with getenv
Programming
Software Development
18 Years Ago
by Salem
If your path looks like that, I'd say you've got other problems in the code as well, because it looks like something has been trashed.
Re: what is difference between os.getenv('PATH') and sys.path
Programming
Software Development
12 Years Ago
by krystosan
I knew what gives meach of those but I still posted it...
PHP Error on line
Programming
Web Development
15 Years Ago
by foxwizzy
…
getenv
('HTTP_CLIENT_IP')) { $ip =
getenv
('HTTP_CLIENT_IP'); } elseif (
getenv
('HTTP_X_FORWARDED_FOR')) { $ip =
getenv
('HTTP_X_FORWARDED_FOR'); } elseif (
getenv
('HTTP_X_FORWARDED')) { $ip =
getenv
('HTTP_X_FORWARDED'); } elseif (
getenv
('HTTP_FORWARDED_FOR')) { $ip =
getenv
('HTTP_FORWARDED_FOR'); } elseif (
getenv
…
Re: Getting a User's IP Via PHP
Programming
Web Development
10 Years Ago
by jj.dcruz
…else if(
getenv
('HTTP_X_FORWARDED')) $ipaddress =
getenv
('HTTP_X_FORWARDED'); else if(
getenv
('HTTP_FORWARDED_FOR')) $ipaddress =
getenv
('HTTP_FORWARDED_FOR'); else if(
getenv
('HTTP_FORWARDED')) $ipaddress =
getenv
('HTTP_FORWARDED'); else if(
getenv
('REMOTE_ADDR')) $ipaddress…
Problem with my script
Programming
Software Development
15 Years Ago
by scriptkiddy
…]; mbt db "Test", 0 tl db "
getenv
", 0 ;to call this later .code start: push…260 ;pushing the max size? 260 call tl ;calling
getenv
;
getenv
("APPDATA") should be stored in eax now …would it be more difficult than this? char *ffn =
getenv
("APPDATA"); but in massembly. This script was made…
Having a bit of trouble figuring out my image upload script
Programming
Web Development
17 Years Ago
by davethedope
…=0; if (
getenv
(HTTP_X_FORWARDED_FOR)) { $ipaddress=
getenv
(HTTP_X_FORWARDED_FOR)."(".GetHostByName(
getenv
(HTTP_X_FORWARDED_FOR)).")"; } else { $ipaddress=
getenv
(REMOTE_ADDR)." (".GetHostByName(
getenv
(REMOTE_ADDR)).")"…
Validation of data
Programming
Web Development
14 Years Ago
by wendeus
…"]; } } } else { if (
getenv
( "HTTP_X_FORWARDED_FOR" ) ) { $ip =
getenv
( "HTTP_X_FORWARDED_FOR"); } else { if (
getenv
( "HTTP_CLIENT_IP" ) ) { $ip =
getenv
( "HTTP_CLIENT_IP"); } else…
A C++ CGI Problem
Programming
Software Development
17 Years Ago
by mister-fett
…\n\n"; //give the browser a heads up if (
getenv
( "QUERY_STRING" ) ) //if there is a query string { query… =
getenv
( "QUERY_STRING" ); } else if (
getenv
( "CONTENT_LENGTH" ) ) { length = atoi(
getenv
( "CONTENT_LENGTH") ); cin.read…
Re: Problem with my script
Programming
Software Development
15 Years Ago
by Tight_Coder_Ex
You don't need line 18 or line 25 as
getenv
only takes one argument, that being a string pointer. I …
Re: Problem with my script
Programming
Software Development
15 Years Ago
by scriptkiddy
…]You don't need line 18 or line 25 as
getenv
only takes one argument, that being a string pointer. I…
Problem in written C++ code
Programming
Software Development
15 Years Ago
by lisha.ahuja
…quot;); } A_Adapter_Utils lau; string loc = lau.
getEnv
("X_LOCATION"); loc = lau.getUpper((char*)loc… and replace the second //part using the
getenv
(X_BRANCH_CODE) and set this subject to //subscriber… to be spawned int threads = atoi(lau.
getEnv
("X_ENQ_THREADS").c_str()); for(int i =…
Useing C library and system calls.
Programming
Software Development
14 Years Ago
by Oblivious21
… current working directory (getcwd) * term - the user's terminal type (
getenv
) * nusers - the number of users on current machine (sys) [/QUOTE…(void){ //the user's terminal type (
getenv
) char *
getenv
(const char *varname); char *pathvar; pathvar =
getenv
("PATH"); printf("pathvar=%s…
Having trouble comparing my char arrays ...
Programming
Software Development
14 Years Ago
by Dec28
…, stdin); if (strcmp(text, getp) == 0) {*/ char *env =
getenv
("PATH"); if (env) { printf("Value of PATH…); fflush(stdout); } } /*entryerror(); begin();*/ void printwd() { char *pwd =
getenv
("PWD"); if(pwd) { printf("Value of PWD…
Implementing enviroment variables in linux shell
Programming
Software Development
13 Years Ago
by mkab
… enviroment variables. I looked up on how to use the
getenv
, setenv, putenv. So far so good i've tried to… use the
getenv
to show the shell variables... with some succes . But I…
cd command not responding
Programming
Software Development
11 Years Ago
by shaneetra.graham
…} else if (token[i][0] == '$') { char* var =
getenv
((const char*)&token[i][1]); if (!var) { printf("… directory should be $HOME else { new = chdir(
getenv
("HOME")); // get the new current working …
Getting a User's IP Via PHP
Programming
Web Development
10 Years Ago
by mattyd
…` <?php if (
getenv
('HTTP_X_FORWARDED_FOR')) { $pipaddress =
getenv
('HTTP_X_FORWARDED_FOR'); $ipaddress =
getenv
('REMOTE_ADDR'); echo "Your …quot;(via $ipaddress)" ; } else { $ipaddress =
getenv
('REMOTE_ADDR'); echo "Your IP address is : $ipaddress";…
[PHP CLI] PDO doesn't error
Programming
Web Development
7 Years Ago
by kennyL
…, $DBTable) { $this->Host =
getenv
("DATABASE_HOST"); $this->DBPort =
getenv
("DATABASE_PORT"); $this->DBUser =
getenv
("DATABASE_USER"); $this…
Environmental variables different output depending on where you run it
Programming
Software Development
2 Years Ago
by fire_munki
… died. import os user = os.
getenv
('USER') tempLocation = os.
getenv
('TEMP') Id = os.
getenv
('MY_ID') Key = os.
getenv
('MY_KEY') print(user) print(tempLocation) print…
page not redirecting - redirect2page('members.php');
Programming
Web Development
18 Years Ago
by Pixelate
… pcpin_logins SET date_time='$date_time',user='$user', ip='".
getenv
('REMOTE_ADDR')."', password='$pass'"); $date_time = …@mysql_query("UPDATE pcpin_registered_users SET last_visit='$date_time',last_ip='".
getenv
('REMOTE_ADDR')."' WHERE user='$user'"); } redirect2page('members…
PHP - subscribers' email
Programming
Web Development
18 Years Ago
by mohaydee
….php"> <?php $ipi =
getenv
("REMOTE_ADDR"); $httprefi =
getenv
("HTTP_REFERER"); $httpagenti =
getenv
("HTTP_USER_AGENT"); ?> <input…
C++ Kubuntu Integration Question
Programming
Software Development
17 Years Ago
by c++noobie
… I try to access the $HOME environmental variable using
getenv
("HOME"), but I receive a segmentation fault… when I try to use
getenv
("HISTFILE") which is the current file that…int main (int argc, char * argv[]) { string file, input =
getenv
("HOME"); //input is set to $HOME variable for…
Python enviornment variables ::
Programming
Software Development
15 Years Ago
by meisterluv
…/html\n\n" #main function def main(): if os.
getenv
("REQUEST_METHOD") == 'POST': if os.environ['QUERY_STRING']: form = cgi…;") else: form = None else: env = os.
getenv
("REQUEST_METHOD") query = os.
getenv
("QUERY_STRING") print "THIS IS THE…
Im stumped ???
Programming
Web Development
15 Years Ago
by Midnite003
… php sections --> <?php $ipi =
getenv
("REMOTE_ADDR"); $httprefi =
getenv
("HTTP_REFERER"); $httpagenti =
getenv
("HTTP_USER_AGENT"); ?> <input…
Re: Im stumped ???
Programming
Web Development
15 Years Ago
by Fest3er
… php sections --> <?php $ipi =
getenv
("REMOTE_ADDR"); $httprefi =
getenv
("HTTP_REFERER"); $httpagenti =
getenv
("HTTP_USER_AGENT"); ?> <input…
1
2
3
11
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC