Re: [PHP] Nested include/require not working in 5.2 (SOLVED)

2007-11-28 Thread Mike Yrabedra
on 11/27/07 3:49 PM, Wolf at [EMAIL PROTECTED] wrote: > > Mike Yrabedra <[EMAIL PROTECTED]> wrote: >> on 11/27/07 1:53 PM, Wolf at [EMAIL PROTECTED] wrote: >> >>> >>> Mike Yrabedra <[EMAIL PROTECTED]> wrote: on 11/27/07 1:43 PM, Wolf at [EMAIL PROTECTED] wrote: > >

Re: [PHP] Nested include/require not working in 5.2

2007-11-28 Thread news_yodpeirs
Did you look for files named config.php? I would try to find out which file is loaded instead of the wanted one. Maybe you could use fopen('config.php','r',TRUE); and check the contents of that file to get an idea where it comes from? If it happens only with a file of this name, I would assume

Re: [PHP] Nested include/require not working in 5.2

2007-11-27 Thread Mike Yrabedra
on 11/27/07 3:49 PM, Wolf at [EMAIL PROTECTED] wrote: > > Mike Yrabedra <[EMAIL PROTECTED]> wrote: >> on 11/27/07 1:53 PM, Wolf at [EMAIL PROTECTED] wrote: >> >>> >>> Mike Yrabedra <[EMAIL PROTECTED]> wrote: on 11/27/07 1:43 PM, Wolf at [EMAIL PROTECTED] wrote: > >

Re: [PHP] Nested include/require not working in 5.2

2007-11-27 Thread Wolf
Mike Yrabedra <[EMAIL PROTECTED]> wrote: > on 11/27/07 1:53 PM, Wolf at [EMAIL PROTECTED] wrote: > > > > > Mike Yrabedra <[EMAIL PROTECTED]> wrote: > >> on 11/27/07 1:43 PM, Wolf at [EMAIL PROTECTED] wrote: > >> > >>> > >>> Mike Yrabedra <[EMAIL PROTECTED]> wrote: > on 11/

Re: [PHP] Nested include/require not working in 5.2

2007-11-27 Thread Stut
Mike Yrabedra wrote: on 11/27/07 1:53 PM, Wolf at [EMAIL PROTECTED] wrote: Mike Yrabedra <[EMAIL PROTECTED]> wrote: on 11/27/07 1:43 PM, Wolf at [EMAIL PROTECTED] wrote: Mike Yrabedra <[EMAIL PROTECTED]> wrote: on 11/27/07 11:46 AM, Jochem Maas at [EMAIL PROTECTED] wrote: Mike Y

Re: [PHP] Nested include/require not working in 5.2

2007-11-27 Thread Mike Yrabedra
on 11/27/07 1:53 PM, Wolf at [EMAIL PROTECTED] wrote: > > Mike Yrabedra <[EMAIL PROTECTED]> wrote: >> on 11/27/07 1:43 PM, Wolf at [EMAIL PROTECTED] wrote: >> >>> >>> Mike Yrabedra <[EMAIL PROTECTED]> wrote: on 11/27/07 11:46 AM, Jochem Maas at [EMAIL PROTECTED] wrote:

Re: [PHP] Nested include/require not working in 5.2

2007-11-27 Thread Wolf
Mike Yrabedra <[EMAIL PROTECTED]> wrote: > on 11/27/07 1:43 PM, Wolf at [EMAIL PROTECTED] wrote: > > > > > Mike Yrabedra <[EMAIL PROTECTED]> wrote: > >> on 11/27/07 11:46 AM, Jochem Maas at [EMAIL PROTECTED] wrote: > >> > >>> Mike Yrabedra wrote: > > I am not able to use i

Re: [PHP] Nested include/require not working in 5.2

2007-11-27 Thread Mike Yrabedra
on 11/27/07 1:43 PM, Wolf at [EMAIL PROTECTED] wrote: > > Mike Yrabedra <[EMAIL PROTECTED]> wrote: >> on 11/27/07 11:46 AM, Jochem Maas at [EMAIL PROTECTED] wrote: >> >>> Mike Yrabedra wrote: I am not able to use includes or requires in nested files using php 5.2.3 (osx) >>>

Re: [PHP] Nested include/require not working in 5.2

2007-11-27 Thread Wolf
Mike Yrabedra <[EMAIL PROTECTED]> wrote: > on 11/27/07 11:46 AM, Jochem Maas at [EMAIL PROTECTED] wrote: > > > Mike Yrabedra wrote: > >> > >> I am not able to use includes or requires in nested files using php 5.2.3 > >> (osx) > >> > >> Including or Requiring files directly works. > >> >

Re: [PHP] Nested include/require not working in 5.2

2007-11-27 Thread Mike Yrabedra
on 11/27/07 11:46 AM, Jochem Maas at [EMAIL PROTECTED] wrote: > Mike Yrabedra wrote: >> >> I am not able to use includes or requires in nested files using php 5.2.3 >> (osx) >> >> Including or Requiring files directly works. >> >> Including files, that also have includes in them, does not. >>

Re: [PHP] Nested include/require not working in 5.2

2007-11-27 Thread Jochem Maas
Mike Yrabedra wrote: > > I am not able to use includes or requires in nested files using php 5.2.3 > (osx) > > Including or Requiring files directly works. > > Including files, that also have includes in them, does not. > > Say you have this... > > -TopDirectory > --index.php (contains include

[PHP] Nested include/require not working in 5.2

2007-11-27 Thread Mike Yrabedra
I am not able to use includes or requires in nested files using php 5.2.3 (osx) Including or Requiring files directly works. Including files, that also have includes in them, does not. Say you have this... -TopDirectory --index.php (contains include("includes/top.php"); ) --includes (folder)