HoRdElOvEr: Groupware Webmail Edition in einem Webhosting-Paket

Beitrag lesen

Wenn ich set_include_path in die index.php schreibe kommt auch wieder ein Fehler?
"Fatal error: Class 'Horde' not found in /homepages/**/**********/htdocs/webmail/horde/includes/Horde/Registry.php on line 1687"

Die Zeile 1677 bis 1700 der Datei sieht so aus:~~~php     /**
     * Reads the configuration values for the given application and imports
     * them into the global $conf variable.
     *
     * @param string $app  The application name.
     */
    public function importConfig($app)
    {
        if (!isset($this->_confCache[$app])) {
            try {
                $config = Horde::loadConfiguration('conf.php', 'conf', $app); //Zeile 1687
            } catch (Horde_Exception $e) {
                $config = null;
            }

$this->_confCache[$app] = empty($config)
                ? array()
                : $config;
        }

$GLOBALS['conf'] = ($app == 'horde')
            ? $this->_confCache['horde']
            : $this->_mergeConfig($this->_confCache['horde'], $this->_confCache[$app]);
    }

  
LG HoRdElOvEr