Seite 1 von 1

Pfadangaben nach Serverumzug falsch - gelöst -

Verfasst: Mo 17. Jul 2006, 14:31
von Matz82
Hallo

irgendwie ist da was faul!
Ich bin mit meiner Page von Local auf einen Webserver umgezogen.
Datenbank angelegt und gefüllt (DB Importiert) und auch die Config.php
angepasst.

Mein Serverpfad ist:

var
..|_ www
........|_vhosts
..............|_h962281.serverkompetenz.net
............................|_httpdocs
.....................................|_cms
.....................................|_conlib
.....................................|_contenido
.....................................|_docs
.....................................|_pear



Hier die Config.php aus ../httpdocs/contenido/includes/

Code: Alles auswählen

<?php

/******************************************
* File      :   config.php
* Project   :   Contenido
* Descr     :   Defines all general
*               variables of Contenido.
*
* © four for business AG
******************************************/

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 to the contenido backend */
$cfg['path']['contenido']               = '/var/www/vhosts/h962281.serverkompetenz.net/httpdocs/contenido/';

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

/* The root server path where all frontends reside */
$cfg['path']['frontend']                = '/var/www/vhosts/h962281.serverkompetenz.net/httpdocs';

/* The root server path to the conlib directory */
$cfg['path']['phplib']                  = '/var/www/vhosts/h962281.serverkompetenz.net/httpdocs/conlib/';

/* The root server path to the pear directory */
$cfg['path']['pear']                    = '/var/www/vhosts/h962281.serverkompetenz.net/httpdocs/pear/';

/* The server path to the desired WYSIWYG-Editor */
$cfg['path']['wysiwyg']                 = '/var/www/vhosts/h962281.serverkompetenz.net/httpdocs/contenido/external/wysiwyg/tinymce2/';

/* The web path to the desired WYSIWYG-Editor */
$cfg['path']['wysiwyg_html']            = 'http://h962281.serverkompetenz.net/contenido/external/wysiwyg/tinymce2/';

/* The server path to all WYSIWYG-Editors */
$cfg['path']['all_wysiwyg']                 = '/var/www/vhosts/h962281.serverkompetenz.net/httpdocs/contenido/external/wysiwyg/';

/* The web path to all WYSIWYG-Editors */
$cfg['path']['all_wysiwyg_html']            = 'http://h962281.serverkompetenz.net/contenido/external/wysiwyg/';

Trotzdem kommen stänig Fehlermeldungen im FE und BE wo er über die Pfade meckert.

zB:http://h962281.serverkompetenz.net/cms/ ... ?idcat=114


Habt ihr zufällig eine Idee?
Ich bein wohl zu blind, denn ich finde den fehler nicht.

Irgendwie hat sich im Firefox auch gerade alles verabschiedet im Layout. OHA! :shock:

Verfasst: Mo 17. Jul 2006, 14:46
von HerrB
Ähm, schon mal die Suche bemüht? Pfade (Administration -> Mandanten, contenido/includes/config.php) kontrollieren und anpassen, con_code leeren (nicht löschen!).

Gruß
HerrB

Verfasst: Mo 17. Jul 2006, 14:48
von Matz82
Ja sicher hab ich das.
Will ja hier auch nicht alles "vollspamen".

die con_code hab ich "geleert", .. alles beim alten.
Die Pfade bin ich nun schon bestimmt 10 mal durch. Ich finde den fehler einfach nicht : (


Bei Mandaten steht folgendes:

Serverpfad: /var/www/vhosts/h962281.serverkompetenz.net/httpdocs/
Web-Addresse: http://h962281.serverkompetenz.net/cms/

Verfasst: Mo 17. Jul 2006, 14:56
von HerrB
Dieser Pfad wird mir angezeigt:
/var/www/vhosts/h962281.serverkompetenz.net/httpdocs/templates/download_list_counter.html

$cfg['path']['frontend'] muss ohne /cms/ am Ende sein (am Ende auch kein /, ist der einzige...).

$cfg['path']['all_wysiwyg'] und $cfg['path']['wysiwyg'] sind Serverpfade (keine Webpfade, d.h. es muss /var/www usw. sein).

Ansonsten Administration -> Mandanten, da könnte noch ein cms fehlen...

Gruß
HerrB

Verfasst: Mo 17. Jul 2006, 15:04
von Matz82
Ich hab jetzt alle änderungen gemacht wie du sagtest.
Hab die config.php geändert. ergebnis kannst du die im ersten Post oben im Code anschauen. Hab es aktualisiert.

Ist das so korrekt jetzt?

Verfasst: Mo 17. Jul 2006, 15:58
von HerrB
Schaut gut aus.

Gruß
HerrB

Verfasst: Mo 17. Jul 2006, 19:03
von Matz82
Vielen Dank erstmal..