Nested include/require not working in 5.2
- From: lists@xxxxxxxxxx (Mike Yrabedra)
- Date: Tue, 27 Nov 2007 11:10:58 -0500
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)
---config.php (contains echo "crap"; )
---top.php (contains include("config.php"); )
When you load the index.php file you would expect the word "crap" to show,
but it does not. I think the getcwd is staying specific to the top folder,
so the path stays the same throughout.
This does not happen in 5.1.6
Is there a fix for this or is it PHP causing the problem?
--
Mike Yrabedra B^)>
.
- Follow-Ups:
- Re: [PHP] Nested include/require not working in 5.2
- From: Jochem Maas
- Re: [PHP] Nested include/require not working in 5.2
- Prev by Date: Couple of IMAP questions
- Next by Date: Re: [PHP] Nested include/require not working in 5.2
- Previous by thread: Couple of IMAP questions
- Next by thread: Re: [PHP] Nested include/require not working in 5.2
- Index(es):
Relevant Pages
|