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

[PHP-WIN] Includes not working on W2K

2002-12-06 Thread Ed Turbin
I've just installed PHP on Windows 2000 and I'm not able to use includes. I'm able to get the PHP info screen as a test, so I know it is working. I edited the PHP.ini file to the directory where my include files are located and still no luck. Is there anything that I am overlooking, or anything els