Re: [PHP-WIN] Includes not working on W2K

2002-12-06 Thread DL Neil
Ed, > Dl, I tried that and it's still not happening. What else could you > reccommend checking? Is there any way that I can take the guess work out of > this? Here's what my dev system has: include_path = ".;C:\Documents and Settings\Administrator\My Documents\WebWork\Code\Includes" Hope it he

Re: [PHP-WIN] Includes not working on W2K

2002-12-06 Thread Ed Turbin
Dl, I tried that and it's still not happening. What else could you reccommend checking? Is there any way that I can take the guess work out of this? "Dl Neil" <[EMAIL PROTECTED]> wrote in message 0e4001c29d66$56672320$c900a8c0@jrbrown">news:0e4001c29d66$56672320$c900a8c0@jrbrown... > Ed, > > > St

Re: [PHP-WIN] Includes not working on W2K

2002-12-06 Thread DL Neil
Ed, > Still no luck with this. My include path in the php.ini is set to: > include_path = ".;\c:\php\includes" and I have the includes directory in the > above listed location. Any ideas? you don't want the first \ - before the c:\etc path Regards, =dn -- PHP Windows Mailing List (http://www.

Re: [PHP-WIN] Includes not working on W2K

2002-12-06 Thread Ed Turbin
Still no luck with this. My include path in the php.ini is set to: include_path = ".;\c:\php\includes" and I have the includes directory in the above listed location. Any ideas? "Frank M. Kromann" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > On Windows 200 a

Re: [PHP-WIN] Includes not working on W2K

2002-12-06 Thread Frank M. Kromann
On Windows 200 and XP you can use / as your seperator. This will not work on WIndows 98 though. Using the / makes your code work on both W2k and *nix boxes. It can be used both in php.ini and in your scripts. - Frank > In php.ini file that is present in the windows directory check the > include

Re: [PHP-WIN] Includes not working on W2K

2002-12-06 Thread Luis Ferro
In php.ini file that is present in the windows directory check the include_path directive. It should have something like: include_path = ".;c:\apps\php\pear" Also, when making includes, check for the escaped "\". If they are present but not escaped, the directory that php will try to find will

RE: [PHP-WIN] includes problem

2001-12-28 Thread Asendorf, John
nal Message- > From: Jim Lucas [php] [mailto:[EMAIL PROTECTED]] > Sent: Thursday, December 27, 2001 3:12 PM > To: Asendorf, John > Subject: Re: [PHP-WIN] includes problem > > > why don't you send me a copy and I will look at it. > Jim Lucas > - Original Message

Re: [PHP-WIN] includes

2001-08-09 Thread Angie Tollerson
other_dir/phpfile.php'); YMMV, Ignatius - Original Message - From: "Angie Tollerson" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, August 08, 2001 7:07 AM Subject: Re: [PHP-WIN] includes > I noticed that is

Re: [PHP-WIN] includes

2001-08-07 Thread Ignatius Teo
clude(BASE_DIR.'someother_dir/phpfile.php'); YMMV, Ignatius - Original Message - From: "Angie Tollerson" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, August 08, 2001 7:07 AM Subject: Re: [PHP-WIN] includes > I noti

Re: [PHP-WIN] includes

2001-08-07 Thread Angie Tollerson
I noticed that is necessary only on Apache...IIS you don't need it. That might have been why you didn't know if you are using windows and had been developing using IIS before. To add a new question to this thread: Has anyone else been able to get includes to work from the top of the web? For

Re: [PHP-WIN] includes

2001-08-07 Thread William E. T.
THat works. Thanks. I was clueless as to why it wouldn't work. Could you explain why the ./ is necessary? I'm still a newbie, and I'm just curious so that I don't repeat the same mistake in other areas. Thanks William Angie Tollerson wrote: > try include("./main.inc"); > > >>> "William E. T.

Re: [PHP-WIN] includes

2001-08-07 Thread Angie Tollerson
try include("./main.inc"); >>> "William E. T." <[EMAIL PROTECTED]> 08/07/01 12:41PM >>> I'm running apache on win98 as a test platform for a site, but whenever I do includes it says it can't read the file. I know the file is there, as apache lists it in the director listing. The exact error I g