nowordneeded wrote:
>
> Warning: include(header.php) [function.include]: failed to open
> stream: No such file or directory
> in /misc/22/148/413/746/6/user/web/tamara-
> braun.com/tamara/tribute.php on line 9
> Why is it rendering in the original file, but not in the secondary
> one? What did I do wrong?
>
> Thanks in advance.
>
> NWN
This means that it couldn't find the file. If you use
include('header.php'); it php tries looking in the local directory, then
the include_path. If it can't find it in either, then it will spew the
warning that you see.
Try giving a full path to the file. For example, go to the directory
that has the file and type "pwd", linux will show the full path. Copy
that & paste it into the include along with header.php.
William Piper