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/include from

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

2003-03-30 Thread Tim Burden
. - 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 with the files I'm trying to include. They also

[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

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,

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

2003-03-29 Thread Greg Macek
, 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:41 -0600 Hi, I'm having a problem hopefully can be easily answered

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 time