Nach Serverumzug Error

Gesperrt
risibility
Beiträge: 89
Registriert: Fr 25. Feb 2005, 00:13
Wohnort: Darmstadt
Kontaktdaten:

Nach Serverumzug Error

Beitrag von risibility » Fr 19. Aug 2005, 10:59

Hallo,

zu erst einmal habe ich alle nötigen Änderungen vorgenommen (Datenbank, Upload, config.php....)

Ich bekommen aber beim versuch ins Backend zu gelangen folgende Fehlermeldung:

Code: Alles auswählen

Fatal error: Error: Can't include /home/httpd/vhosts/risibility.de/httpdocs/contenido/classes/contenido/class.client.php
in /home/httpd/vhosts/risibility.de/httpdocs/contenido/includes/api/functions.api.general.php on line 84
Der Fehler ist offensichtlich! Warum schreibt Contenido nach /classes nochmal /contenido?

Ich versteh es nicht und habe die config.php schon 15x Kontrolliert...

Hier noch den betreffenden Text aus der functions.api.general.php:

Code: Alles auswählen

function cInclude ($where, $what, $force = false)
{
	contenido_include($where, $what, $force);
}

function plugin_include ($where, $what)
{
	global $cfg;
	
	$include = $cfg['path']['contenido'] . $cfg['path']['plugins'] . $where. "/" . $what;

	include_once($include);  
}
Contenido Version: 4.8.3
Apache 1.3.34
MySQL Serverversion 5.0.32
Installierte PHP-Version 5.2.5

timo
Beiträge: 6284
Registriert: Do 15. Mai 2003, 18:32
Wohnort: Da findet ihr mich nie!
Kontaktdaten:

Beitrag von timo » Fr 19. Aug 2005, 11:03

zufällig etwas in der config.path.php angepasst?

risibility
Beiträge: 89
Registriert: Fr 25. Feb 2005, 00:13
Wohnort: Darmstadt
Kontaktdaten:

Beitrag von risibility » Fr 19. Aug 2005, 11:05

Nein, sag das nicht für notwendig!
Contenido Version: 4.8.3
Apache 1.3.34
MySQL Serverversion 5.0.32
Installierte PHP-Version 5.2.5

timo
Beiträge: 6284
Registriert: Do 15. Mai 2003, 18:32
Wohnort: Da findet ihr mich nie!
Kontaktdaten:

Beitrag von timo » Fr 19. Aug 2005, 11:22

ist es auch nicht

aber du könntest mal die Auszüge aus der config.php bzw der config.path.php posten

risibility
Beiträge: 89
Registriert: Fr 25. Feb 2005, 00:13
Wohnort: Darmstadt
Kontaktdaten:

Beitrag von risibility » Fr 19. Aug 2005, 11:27

Hier die Daten aus der config.php

Code: Alles auswählen

/* The root server path to the contenido backend */
$cfg['path']['contenido']               = '/home/httpd/vhosts/risibility.de/httpdocs/contenido/';

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

/* The root server path where all frontends reside */
$cfg['path']['frontend']                = '/home/httpd/vhosts/risibility.de/httpdocs/';

/* The root server path to the conlib directory */
$cfg['path']['phplib']                  = '/home/httpd/vhosts/risibility.de/httpdocs/conlib/';

/* The root server path to the pear directory */
$cfg['path']['pear']                    = '/home/httpd/vhosts/risibility.de/httpdocs/pear/';

/* The server path to the desired WYSIWYG-Editor */
$cfg['path']['wysiwyg']                 = '/home/httpd/vhosts/risibility.de/httpdocs/contenido/external/wysiwyg/spaw/';

/* The web path to the desired WYSIWYG-Editor */
$cfg['path']['wysiwyg_html']            = 'http://www.risibility.de/contenido/external/wysiwyg/spaw/';
Und heir aus der config.path.php

Code: Alles auswählen

$cfg['path']['contenido_html']          = '../contenido/';

$cfg['path']['statfile']                = 'statfile/';
$cfg['path']['includes']                = 'includes/';

$cfg['path']['xml']                     = 'xml/';
$cfg['path']['images']                  = 'images/';
$cfg['path']['classes']                 = 'classes/';

$cfg["path"]["cronjobs"]				= 'cronjobs/';
$cfg['path']['scripts']                 = 'scripts/';
$cfg['path']['styles']                  = 'styles/';
$cfg["path"]['plugins']				    = 'plugins/';

$cfg['path']['locale']                  = 'locale/';
$cfg['path']['temp']                  	= 'temp/';


$cfg['path']['frontendtemplate']        = 'external/frontend/';
$cfg['path']['templates']               = 'templates/standard/';
$cfg['path']['xml']                     = 'xml/';

$cfg['path']['repository']				= $cfg["path"]['plugins'] . 
Contenido Version: 4.8.3
Apache 1.3.34
MySQL Serverversion 5.0.32
Installierte PHP-Version 5.2.5

risibility
Beiträge: 89
Registriert: Fr 25. Feb 2005, 00:13
Wohnort: Darmstadt
Kontaktdaten:

Beitrag von risibility » Fr 19. Aug 2005, 12:31

Und ich dachte, ich würde keine dummen Fehler mehr machen.

Der Ordner /classes/contenido/classes war bei mir nicht vorhanden... :oops:

Danke nochmal...
Contenido Version: 4.8.3
Apache 1.3.34
MySQL Serverversion 5.0.32
Installierte PHP-Version 5.2.5

Gesperrt