[horde] cant get rid of "Some of Horde's configuration files

René Lund Jensen lundeman at tbkol.dk
Thu Nov 7 08:33:25 PST 2002



-----Original Message-----
From: horde-bounces at lists.horde.org
[mailto:horde-bounces at lists.horde.org]On Behalf Of Mike Koponick
Sent: 8. november 2002 17:09
To: horde at lists.horde.org
Subject: Re: [horde] cant get rid of "Some of Horde's configuration
files
|
| FROM:
|
| define('HORDE_BASE', dirname(__FILE__));
| $horde_configured = (@file_exists('./config/horde.php') &&
|                      @file_exists('./config/html.php') &&
|                      @file_exists('./config/mime_drivers.php') &&
|                      @file_exists('./config/mime_mapping.php') &&
|                      @file_exists('./config/registry.php'));
|

If this is how your index.php is, then it's an error.
it should read:

define('HORDE_BASE', dirname(__FILE__));
$horde_configured = (@file_exists(HORDE_BASE . '/config/horde.php') &&
                     @file_exists(HORDE_BASE . '/config/html.php') &&
                     @file_exists(HORDE_BASE . '/config/mime_drivers.php')
&&
                     @file_exists(HORDE_BASE . '/config/mime_mapping.php')
&&
                     @file_exists(HORDE_BASE . '/config/registry.php'));


This should solve your problem.
(this is how it is en CVS HEAD, I don't know about REL_ENGx)

René Jensen



More information about the horde mailing list