Neuinstallation 4.8.18 endet mit Fehlermeldung - Fatal error

Gesperrt
contenido12
Beiträge: 4
Registriert: Do 11. Okt 2012, 14:31
Kontaktdaten:

Neuinstallation 4.8.18 endet mit Fehlermeldung - Fatal error

Beitrag von contenido12 »

Fatal error: Class 'Contenido_UrlBuilderConfig' not found in /mnt/web8/c0/71/53589871/htdocs/contenido/includes/startup.php on line 145

... auf einem Strato Server ...

Nach der Neuinstallation kommt diese Fehlermeldung. Wer kann helfen. Danke

contenido/includes/config.php

<?php
/**
* Project:
* Contenido Content Management System
*
* Description:
* Defines all general variables of Contenido.
*
* NOTE: This configuration file was generated by Contenido setup!
*
* Requirements:
* @con_php_req 5.0
*
*
* @package Contenido Backend classes
* @version 1.1.2
* @author unknown
* @copyright four for business AG <www.4fb.de>
* @license http://www.contenido.org/license/LIZENZ.txt
* @link http://www.4fb.de
* @link http://www.contenido.org
*
* {@internal
* created 2010-05-16
* modified 2010-05-20, Murat Purc, removed request check during processing ticket [#CON-307]
* modified 2011-08-24, Dominik Ziegler, changed default server path and web url definitions [#CON-430]

*
* $Id$
* }}
*
*/


defined('CON_FRAMEWORK') or die('Illegal call');


global $cfg;

/* Section 1: Path settings
* ------------------------
*
* Path settings which will vary along different
* Contenido settings.
*
* A little note about web and server path settings:
* - A Web Path can be imagined as web addresses. Example:
* http://192.168.1.1/test/
* - A Server Path is the path on the server's hard disk. Example:
* /var/www/html/contenido for Unix systems OR
* c:/htdocs/contenido for Windows systems
*
* Note: If you want to modify the locations of subdirectories for
* some reason (e.g. the includes directory), see Section 8.
*/

/* The root server path where all frontends reside */
$cfg['path']['frontend'] = '/mnt/web8/c0/71/53589871/htdocs';

/* The root server path to the contenido backend */
$cfg['path']['contenido'] = $cfg['path']['frontend'] . '/contenido/';

/* The root server path to the conlib directory */
$cfg['path']['phplib'] = $cfg['path']['frontend'] . '/conlib/';

/* The root server path to the pear directory */
$cfg['path']['pear'] = $cfg['path']['frontend'] . '/pear/';

/* The server path to all WYSIWYG-Editors */
$cfg['path']['all_wysiwyg'] = $cfg['path']['contenido'] . 'external/wysiwyg/';

/* The server path to the desired WYSIWYG-Editor */
$cfg['path']['wysiwyg'] = $cfg['path']['all_wysiwyg'] . 'tinymce3/';

/* The web server path to the contenido backend */
$cfg['path']['contenido_fullhtml'] = 'http://alexierbar.de/contenido/';

/* The web path to all WYSIWYG-Editors */
$cfg['path']['all_wysiwyg_html'] = $cfg['path']['contenido_fullhtml'] . 'external/wysiwyg/';

/* The web path to the desired WYSIWYG-Editor */
$cfg['path']['wysiwyg_html'] = $cfg['path']['all_wysiwyg_html'] . 'tinymce3/';



/* Section 2: Database settings
* ----------------------------
*
* Database settings for MySQL. Note that we don't support
* other databases in this release.
*/

/* The prefix for all contenido system tables, usually "con" */
$cfg['sql']['sqlprefix'] = 'con';

/* The host where your database runs on */
$contenido_host = 'rdbms.strato.de';

/* The database name which you use */
$contenido_database = 'DB12xxx';

/* The username to access the database */
$contenido_user = 'U12xxx';

/* The password to access the database */
$contenido_password = 'p12xxx';

$cfg["database_extension"] = 'mysql';

$cfg["nolock"] = 'false';

$cfg["is_start_compatible"] = false;

?>
xmurrix
Beiträge: 3215
Registriert: Do 21. Okt 2004, 11:08
Wohnort: Augsburg
Hat sich bedankt: 4 Mal
Danksagung erhalten: 17 Mal
Kontaktdaten:

Re: Neuinstallation 4.8.18 endet mit Fehlermeldung - Fatal e

Beitrag von xmurrix »

Schau nach, ob du die Datei "contenido/includes/config.autoloader.php" hast, und ob darin der Eintrag

Code: Alles auswählen

    'Contenido_UrlBuilderConfig' => 'contenido/classes/UrlBuilder/Contenido_UrlBuilderConfig.class.php',
vorkommt, und ob folgende Datei bei dir existiert

Code: Alles auswählen

/mnt/web8/c0/71/53589871/htdocs/contenido/classes/UrlBuilder/Contenido_UrlBuilderConfig.class.php
Gruß
xmurrix
CONTENIDO Downloads: CONTENIDO 4.10.1
CONTENIDO Links: Dokumentationsportal, FAQ, API-Dokumentation
CONTENIDO @ Github: CONTENIDO 4.10 - Mit einem Entwicklungszweig (develop-branch), das viele Verbesserungen/Optimierungen erhalten hat und auf Stabilität und Kompatibilität mit PHP 8.0 bis 8.2 getrimmt wurde.
Gesperrt