Re: what does this error message mean?
am 06.09.2007 21:27:33 von Good Man
hakim2@etleb.com wrote in news:1189106552.434944.189890
@r29g2000hsg.googlegroups.com:
> Fatal error: main() [function.require]: Failed opening required
> 'Connections/gnc.php' (include_path='.:/usr/local/lib/php') in /
> homepages/htdocs/temp2/online/webcontrol/index.php on line 1
>
>
it means your script didn't find "Connections/gnc.php"
Re: what does this error message mean?
am 06.09.2007 21:45:18 von luiheidsgoeroe
On Thu, 06 Sep 2007 21:27:33 +0200, Good Man wrote:
> hakim2@etleb.com wrote in news:1189106552.434944.189890
> @r29g2000hsg.googlegroups.com:
>
>> Fatal error: main() [function.require]: Failed opening required
>> 'Connections/gnc.php' (include_path=3D'.:/usr/local/lib/php') in /
>> homepages/htdocs/temp2/online/webcontrol/index.php on line 1
>>
> it means your script didn't find "Connections/gnc.php"
Most likely, or it didn't have the rights.
Most probably the working directoty is not the one you expect it to be. =
=
echo get_cwd(), your require should be absolute (like /home/path/to/file=
), =
or relative to that working dir or the include_path
-- =
Rik Wasmus
Re: what does this error message mean?
am 07.09.2007 00:46:50 von hakim2
On Sep 6, 12:45 pm, "Rik Wasmus" wrote:
> On Thu, 06 Sep 2007 21:27:33 +0200, Good Man wrote:
> > hak...@etleb.com wrote in news:1189106552.434944.189890
> > @r29g2000hsg.googlegroups.com:
>
> >> Fatal error: main() [function.require]: Failed opening required
> >> 'Connections/gnc.php' (include_path='.:/usr/local/lib/php') in /
> >> homepages/htdocs/temp2/online/webcontrol/index.php on line 1
>
> > it means your script didn't find "Connections/gnc.php"
>
> Most likely, or it didn't have the rights.
>
> Most probably the working directoty is not the one you expect it to be.
> echo get_cwd(), your require should be absolute (like /home/path/to/file),
> or relative to that working dir or the include_path
>
> --
> Rik Wasmus
thanx everyone for the help...