Does the webserver support $_ENV["OSTYPE"]

 
Post new topic   Reply to topic    Aprelium Forum Index -> PHP
View previous topic :: View next topic  
Author Message
fall95
-


Joined: 11 Apr 2003
Posts: 2

PostPosted: Sat Jul 26, 2003 5:01 pm    Post subject: Does the webserver support $_ENV["OSTYPE"] Reply with quote

Is there away I can set the $_ENV["OSTYPE"] on the webserver? :?
Back to top View user's profile Send private message
datwig
-


Joined: 26 Jan 2003
Posts: 85

PostPosted: Sat Jul 26, 2003 5:06 pm    Post subject: Reply with quote

I beleive there is, but I don't know it. I do know howto get both browser version and OS though.

$ostype = getenv("HTTP_USER_AGENT");
Back to top View user's profile Send private message AIM Address
fall95
-


Joined: 11 Apr 2003
Posts: 2

PostPosted: Sat Jul 26, 2003 5:39 pm    Post subject: Reply with quote

The reason is that my development enviorment is windows but
my web host is freebsd and the include directories have to be set differently
for some reason:

if(!eregi("win",$_ENV["OSTYPE"]))
{
ini_set("include_path",ini_get("include_path").":".$_SERVER['DOCUMENT_ROOT'].
"/phpincludes/");
}
else
{
ini_set("include_path",ini_get("include_path").";".$_SERVER['DOCUMENT_ROOT'].
"/phpincludes/");
}
Back to top View user's profile Send private message
aprelium
-


Joined: 22 Mar 2002
Posts: 6800

PostPosted: Sat Jul 26, 2003 6:55 pm    Post subject: Reply with quote

Abyss Web Server does not export the OSTYPE environment variable. Anyway, you can set it manually. Open CGI Parameters and add in the CGI Environement Variable a new variable with OSTYPE as name and enter its desired value.
By doing so, OSTYPE is added in the environment of any executed CGI script.
_________________
Support Team
Aprelium - http://www.aprelium.com
Back to top View user's profile Send private message Send e-mail
Display posts from previous:   
Post new topic   Reply to topic    Aprelium Forum Index -> PHP All times are GMT + 1 Hour
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB phpBB Group