[PHP] DOCUMENT_ROOT errors

2009-02-09 Thread Marc Fromm
I updated fedora core from FC5 to TC6, thus httpd and php were updated in the process. My pages worked with no errors before the upgrade. My php pages are no not displaying and generating this error in the httpd logs PHP Notice: Undefined variable: DOCUMENT_ROOT in /var/www/html/studentjobs/ind

[PHP] $DOCUMENT_ROOT

2002-12-06 Thread christopher calicott
> echo $_SERVER["DOCUMENT_ROOT"]; > ?> c:/wwwroot is what I get. I am convinced the problem I am having is due to some issues with configuration. Here is why: I found the script that is the 'original' one that I had working just as an image displayer - not as part of a larger html document

Re: [PHP] document_root

2002-10-01 Thread Brad Bonkoski
ber 01, 2002 6:39 PM > > To: [EMAIL PROTECTED] > > Cc: 'Tony Crockford'; 'Php-General@Lists. Php. Net' > > Subject: Re: [PHP] document_root > > > > *cringe* > > > > No, document root is a defined directory, not an attribute of a > s

RE: [PHP] document_root

2002-10-01 Thread John W. Holmes
ett [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, October 01, 2002 6:39 PM > To: [EMAIL PROTECTED] > Cc: 'Tony Crockford'; 'Php-General@Lists. Php. Net' > Subject: Re: [PHP] document_root > > *cringe* > > No, document root is a defined directory, not an att

RE: [PHP] document_root

2002-10-01 Thread Tony Crockford
> Check out: > http://www.php.net/manual/en/function.getcwd.php > > HTH > -Brad Certainly does, thanks. I suppose if I'd thought to look at the manual contents rather than trying to construct a *search* I might have found that Oh well, so much to learn so little time. Thanks Tony -- P

RE: [PHP] document_root

2002-10-01 Thread John W. Holmes
e- > From: Tony Crockford [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, October 01, 2002 6:01 PM > To: Php-General@Lists. Php. Net > Subject: [PHP] document_root > > Hi > > what exactly does document_root do? > > Does it give to path to the file from the server root?

Re: [PHP] document_root

2002-10-01 Thread Chris Shiflett
*cringe* No, document root is a defined directory, not an attribute of a specific file. It is used to map the root URL to a directory on the filesystem. For example, when you request http://www.google.com/, that final slash in the URL is the resource you are requesting. In this case, it is the

Re: [PHP] document_root

2002-10-01 Thread Brad Bonkoski
document_root is the root path to the webserver. Check out: http://www.php.net/manual/en/function.getcwd.php HTH -Brad Tony Crockford wrote: > Hi > > what exactly does document_root do? > > Does it give to path to the file from the server root? > > or does it give the path to the server root?

[PHP] document_root

2002-10-01 Thread Tony Crockford
Hi what exactly does document_root do? Does it give to path to the file from the server root? or does it give the path to the server root? has something changed in 4.2.2 If I want the path to the document I'm in how do I get it? looked everywhere (manual, books and archive), but the answer i

Re: [PHP] DOCUMENT_ROOT disappeared on me!

2002-07-03 Thread Jesper Brunholm
David E. Weekly wrote: >>IMHO you're better off > > I agree and understand why, but... > >>but yes, if you set register_globals = on then >>you shouldn't need to have retooled your scripts. > > I agree. =) > >>Did you restart your >>webserver after you adjusted php.ini? > > Yes. Full stop/s

Re: [PHP] DOCUMENT_ROOT disappeared on me!

2002-07-02 Thread Steve Yates
"David E. Weekly" <[EMAIL PROTECTED]> wrote in message 000701c221d7$656f8d90$[EMAIL PROTECTED]">news:000701c221d7$656f8d90$[EMAIL PROTECTED]... > I had to retool all of my scripts. =/ This is probably too late but one can use extract($_POST) or similar at the beginning of a script to create t

Re: [PHP] DOCUMENT_ROOT disappeared on me!

2002-07-02 Thread Jason Wong
On Tuesday 02 July 2002 22:58, David E. Weekly wrote: > > IMHO you're better off > > I agree and understand why, but... > > > but yes, if you set register_globals = on then > > you shouldn't need to have retooled your scripts. > > I agree. =) > > > Did you restart your > > webserver after you adju

Re: [PHP] DOCUMENT_ROOT disappeared on me!

2002-07-02 Thread David E. Weekly
> IMHO you're better off I agree and understand why, but... > but yes, if you set register_globals = on then > you shouldn't need to have retooled your scripts. I agree. =) > Did you restart your > webserver after you adjusted php.ini? Yes. Full stop/start cycle. -david -- PHP General M

Re: [PHP] DOCUMENT_ROOT disappeared on me!

2002-07-02 Thread Erik Price
On Tuesday, July 2, 2002, at 10:47 AM, David E. Weekly wrote: > After many tries, that is what indeed worked, but I'm a little irked, > since > shouldn't it have been that setting register_global to "On" in my > php.ini > would re-enable these base globals? I had to retool all of my > script

Re: [PHP] DOCUMENT_ROOT disappeared on me!

2002-07-02 Thread David E. Weekly
rom: "Kevin Waterson" <[EMAIL PROTECTED]> To: "David E. Weekly" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Tuesday, July 02, 2002 7:23 AM Subject: Re: [PHP] DOCUMENT_ROOT disappeared on me! > On Mon, 1 Jul 2002 22:01:27 -0700 > "David E. Weekly&quo

Re: [PHP] DOCUMENT_ROOT disappeared on me!

2002-07-02 Thread Kevin Waterson
On Mon, 1 Jul 2002 22:01:27 -0700 "David E. Weekly" <[EMAIL PROTECTED]> wrote: > All, > > I upgraded from PHP 4.1.2 to 4.2.1 today along with revving Apache to 1.3.26 > from 1.3.22, and, woe is me, my $DOCUMENT_ROOT now evaluates to "" on all of > my PHP pages! $_SERVER['DOCUMENT_ROOT'] Kevin

[PHP] DOCUMENT_ROOT disappeared on me!

2002-07-02 Thread David E. Weekly
All, I upgraded from PHP 4.1.2 to 4.2.1 today along with revving Apache to 1.3.26 from 1.3.22, and, woe is me, my $DOCUMENT_ROOT now evaluates to "" on all of my PHP pages! phpinfo() shows "DOCUMENT_ROOT" being set correctly under the Apache variables category. I tried several variations, includ

Re: [PHP] $DOCUMENT_ROOT behavior linux vs solaris

2002-03-20 Thread Alexander Skwar
»Dennis Moore« sagte am 2002-03-20 um 02:14:16 -0500 : > So when I build my paths I get an extra "/". Is there any way to make Sun version >to work like the Linux version. I hate to go back and change all my code. Uhm, is the double / a problem? On Linux, it doesn't seem to hurt. Alexander

[PHP] $DOCUMENT_ROOT behavior linux vs solaris

2002-03-19 Thread Dennis Moore
I use the $DOCUMENT_ROOT environment variable quite ofter to build an absolute path to files in the web tree.  I just ran into a problem moving my code from a linux box (RH6.2) to a SunW Ultra 60.   Both machines are running the same version of Apache 1.3.20 and PHP4.0.6.   Here's the rub.  

Re: [PHP] DOCUMENT_ROOT

2001-04-25 Thread Dan Lowe
Previously, Jordan Elver said: > > I'm not using virtual hosts on my local machine but I am on the production > machine. What should DOCUMENT_ROOT return? I though it returns the directory > of the current script. So if I had a site in > /usr/local/apache/htdocs/cha/script.php then I would expe

RE: [PHP] DOCUMENT_ROOT

2001-04-25 Thread PHPBeginner.com
on [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 25, 2001 10:33 PM To: Maxim Maletsky Cc: PHP General Mailing List Subject: RE: [PHP] DOCUMENT_ROOT Not to beat a dead horse, but assuming a site structure like this: /htdocs /htdocs/modules /htdocs/includes /htdocs/templates where all my PHP log

RE: [PHP] DOCUMENT_ROOT

2001-04-25 Thread Jaxon
Not to beat a dead horse, but assuming a site structure like this: /htdocs /htdocs/modules /htdocs/includes /htdocs/templates where all my PHP logic scripts are in htdocs, and all the bits and pieces are in the other dirs, is there any way to set include_path to: $include_path = "$DOCUMENT_ROOT

RE: [PHP] DOCUMENT_ROOT

2001-04-25 Thread Maxim Maletsky
PHP Begins) [EMAIL PROTECTED] www.phpbeginner.com -Original Message- From: Jordan Elver [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 25, 2001 7:03 PM To: Yasuo Ohgaki Cc: PHP General Mailing List Subject: Re: [PHP] DOCUMENT_ROOT Thanks for the reply, I'm not using virtual

Re: [PHP] DOCUMENT_ROOT

2001-04-25 Thread Jordan Elver
Thanks for the reply, I'm not using virtual hosts on my local machine but I am on the production machine. What should DOCUMENT_ROOT return? I though it returns the directory of the current script. So if I had a site in /usr/local/apache/htdocs/cha/script.php then I would expect DOCUMENT_ROOT to

RE: [PHP] DOCUMENT_ROOT

2001-04-25 Thread Maxim Maletsky
r.com (Where PHP Begins) [EMAIL PROTECTED] www.phpbeginner.com -Original Message- From: Jordan Elver [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 25, 2001 2:54 AM To: PHP General Mailing List Subject: [PHP] DOCUMENT_ROOT Hi, Has any got any idea why $DOCUMENT_ROOT returns /usr/local/h

Re: [PHP] DOCUMENT_ROOT

2001-04-24 Thread Yasuo Ohgaki
If you are using Apache virtual host, it will set virtual host's document root. Is this what you want? Regards, -- Yasuo Ohgaki "Jordan Elver" <[EMAIL PROTECTED]> wrote in message 01042417535900.00987@localhost">news:01042417535900.00987@localhost... > Hi, > Has any got any idea why $DOCUMENT_R

[PHP] DOCUMENT_ROOT

2001-04-24 Thread Jordan Elver
Hi, Has any got any idea why $DOCUMENT_ROOT returns /usr/local/htdocs on my home machine but it should return /usr/local/htdocs/sitename or where ever I put it, but on my production machine it return what it should like /usr/local/sitename or whatever? I'm trying to use it to help include file

RE: [PHP] $DOCUMENT_ROOT

2001-01-29 Thread Maxim Maletsky
Just add the full path of your web server into your include_path (php.ini) - this should work the best for you. Cheers, Maxim Maletsky -Original Message- From: Toby Miller [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 30, 2001 8:07 AM To: [EMAIL PROTECTED] Subject: [PHP

RE: [PHP] $DOCUMENT_ROOT

2001-01-29 Thread Jonathan Sharp
lopment Group - Flyerware http://www.flyerware.com/ Phone: (425)688-9200 Cell: (425)766-1398 EPage: [EMAIL PROTECTED] -Original Message- From: CC Zona [mailto:[EMAIL PROTECTED]] Sent: Monday, January 29, 2001 5:23 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] $DOCUMENT_ROOT In article <039901c08a48$3d

Re: [PHP] $DOCUMENT_ROOT

2001-01-29 Thread CC Zona
In article <039901c08a48$3d4b5740$[EMAIL PROTECTED]>, [EMAIL PROTECTED] ("Toby Miller") wrote: > Whenever I include files in Apache I always do it like this: > > include($DOCUMENT ROOT."/folder/file.php"); > > However, now I am doing a site in IIS and I do not have $DOCUMENT ROOT at > my disp

[PHP] $DOCUMENT_ROOT

2001-01-29 Thread Toby Miller
Whenever I include files in Apache I always do it like this: include($DOCUMENT_ROOT."/folder/file.php"); However, now I am doing a site in IIS and I do not have $DOCUMENT_ROOT at my disposal. What do most of you usually do to workaround this? Aside from installing Apache and Linux and bypassin