Re: [PHP] Can't find .php3 files

2008-01-15 Thread Richard Lynch
If he's using a URL for the require: require 'http://exmaple.com/whatever.php3'; then Apache could be invovled. If it's just a plain file: require 'foo.php3'; then Apache is almost-for-sure not involved. I don't think PHP has ever had any kind of automated .php3 to .php converter for require/incl

Re: [PHP] Can't find .php3 files

2008-01-09 Thread Jim
Ford, Mike wrote: On 09 January 2008 12:18, Anup Shukla wrote: Jim wrote: Hi, Mike, The include is more like require "../admin/admin.php3" I don't know exactly how Apache performs its magic so I wasn't sure that the request for an include file would even pass through Apache's hands.

RE: [PHP] Can't find .php3 files

2008-01-09 Thread Ford, Mike
On 09 January 2008 12:18, Anup Shukla wrote: > Jim wrote: > > Hi, Mike, > > > > The include is more like > > require "../admin/admin.php3" I don't know exactly how Apache > > performs its magic so I wasn't sure that the request for an include > > file would even pass through Apache's hands. In m

Re: [PHP] Can't find .php3 files

2008-01-09 Thread Anup Shukla
Jim wrote: Hi, Mike, The include is more like require "../admin/admin.php3" I don't know exactly how Apache performs its magic so I wasn't sure that the request for an include file would even pass through Apache's hands. In my limited world, an include wouldn't have to involve Apache, just t

Re: [PHP] Can't find .php3 files

2008-01-09 Thread Jim
Ford, Mike wrote: Chris wrote: I think you misunderstood. I have lots of file with things like require "admin.php3" But there is no admin.php3 anywhere. There is however a file admin.php. Since this works on the old server then something on that system is translating a request for a .php3

RE: [PHP] Can't find .php3 files

2008-01-09 Thread Ford, Mike
Chris wrote: > > > I think you misunderstood. I have lots of file with things like > > > > require "admin.php3" > > > > But there is no admin.php3 anywhere. There is however a file > > admin.php. Since this works on the old server then something on > > that system is translating a request for

Re: [PHP] Can't find .php3 files

2008-01-08 Thread Jim
Chris wrote: I think you misunderstood. I have lots of file with things like require "admin.php3" But there is no admin.php3 anywhere. There is however a file admin.php. Since this works on the old server then something on that system is translating a request for a .php3 file to .php I'm g

Re: [PHP] Can't find .php3 files

2008-01-08 Thread Jim Lucas
Jim wrote: Chris wrote: I'm trying to help a friend migrate his application to php 5 from another system. The problem seems to be that he references files (require, include, etc) that have a .php3 extension, however there are no files in those locations with the .php3. There are files with

Re: [PHP] Can't find .php3 files

2008-01-08 Thread Chris
I think you misunderstood. I have lots of file with things like require "admin.php3" But there is no admin.php3 anywhere. There is however a file admin.php. Since this works on the old server then something on that system is translating a request for a .php3 file to .php I'm guessing. Apach

Re: [PHP] Can't find .php3 files

2008-01-08 Thread Jim
Chris wrote: I'm trying to help a friend migrate his application to php 5 from another system. The problem seems to be that he references files (require, include, etc) that have a .php3 extension, however there are no files in those locations with the .php3. There are files with .php exten

Re: [PHP] Can't find .php3 files

2008-01-08 Thread Chris
I'm trying to help a friend migrate his application to php 5 from another system. The problem seems to be that he references files (require, include, etc) that have a .php3 extension, however there are no files in those locations with the .php3. There are files with .php extensions. It's r