RE: [PHP] require/include from a different directory

2003-03-31 Thread Jennifer Goodie
If the includes are within the website, using $_SERVER[DOCUMENT_ROOT]/pathtofile/file is a good way to go. -Original Message- From: John W. Holmes [mailto:[EMAIL PROTECTED] Sent: Saturday, March 29, 2003 2:10 PM To: 'Greg Macek'; [EMAIL PROTECTED] Subject: RE: [PHP] require/incl

Re: [PHP] require/include from a different directory

2003-03-30 Thread Tim Burden
any folder. - Original Message - From: "Greg Macek" <[EMAIL PROTECTED]> Newsgroups: php.general To: <[EMAIL PROTECTED]> Sent: Saturday, March 29, 2003 3:37 PM Subject: Re: [PHP] require/include from a different directory > It seems I have found my problem. It has to do wit

RE: [PHP] require/include from a different directory

2003-03-29 Thread John W. Holmes
> > try using an absolute path. > > I've considered that route, but an issue I have with that is I do most > of my development work on a machine that a different directory structure > than the production server (currently a Cobalt RaQ4), so the paths are > different. Accommodating both would be a

Re: [PHP] require/include from a different directory

2003-03-29 Thread Greg Macek
n Sat, 2003-03-29 at 14:47, Jason Paschal wrote: > try using an absolute path. > > > > > > > >From: Greg Macek <[EMAIL PROTECTED]> > >To: [EMAIL PROTECTED] > >Subject: [PHP] require/include from a different directory > >Date: 29 Mar 2003 14:19:4

Re: [PHP] require/include from a different directory

2003-03-29 Thread Greg Macek
It seems I have found my problem. It has to do with the files I'm trying to include. They also include other files and the directories it's trying to include files from aren't working. I've found a workaround for my situation for the time being. It's not pretty, but functional. On Sat, 2003-03-29

[PHP] require/include from a different directory

2003-03-29 Thread Greg Macek
Hi, I'm having a problem hopefully can be easily answered. I'm trying to organize parts of my site into different directories so that they're all not in the "main" folder so to speak; basically breaking out by what part of the application it is. I also have an "include" folder for all my main func