[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [cobalt-users] PHP Gallery won't install



> When I try to open index.php during install of a php gallery on a Qube 3,
> I get this warning:
>
> Warning: Failed opening 'albums.php' for inclusion
> (include_path='/usr/sausalito/ui/libPhp')
> in /home/groups/home/web/index.php on line 107
>
> How do I solve this? PHP *is* functional in the
> same webroot, I tested it with simple php calls.

Your .php source file has an include or require statement in it that is
expecting another file to be in a particular location.  Check the source
file on the referenced line and confirm that the dependency (a) exists and
(b) is accessible with permissions in effect.  You may need to change the
location of the included file(s) or modify the path.  See
http://www.php.net/manual/en/configuration.php#ini.include-path

-- Paul