#1 (permalink)  
Alt 26.08.2011, 15:22
Neuer Benutzer
 
Registriert seit: 26.08.2011
Beiträge: 1
Standard Fehler nach Serverwechsel

Hallo Leute,

bin neu hier und ziemlich verzweifelt.
Wir sind mit unserem Webshop auf einen neuen Server umgezogen.
Ich habe also die Dateien hochgeladen, Datenbank importiert.
Anschließend die beiden configuration.php angepasst. Schreibrechte korrekt vergeben. Aber er läuft einfach nicht. Wenn ich die Startseite aufrufe kommen folgende Fehlermeldungen:

Code:
Warning: include_once(DIR_FS_INCxtc_db_error.inc.php) [function.include-once]: failed to open stream: No such file or directory in /hp/bx/aa/gc/www/httpdocs/shop/inc/xtc_db_query.inc.php on line 19

Warning: include_once() [function.include]: Failed opening 'DIR_FS_INCxtc_db_error.inc.php' for inclusion (include_path='.:/usr/share/php:/usr/share/pear') in /hp/bx/aa/gc/www/httpdocs/shop/inc/xtc_db_query.inc.php on line 19

Warning: require_once(DIR_FS_INCxtc_draw_selection_field.inc.php) [function.require-once]: failed to open stream: No such file or directory in /hp/bx/aa/gc/www/httpdocs/shop/inc/xtc_draw_checkbox_field.inc.php on line 18

Fatal error: require_once() [function.require]: Failed opening required 'DIR_FS_INCxtc_draw_selection_field.inc.php' (include_path='.:/usr/share/php:/usr/share/pear') in /hp/bx/aa/gc/www/httpdocs/shop/inc/xtc_draw_checkbox_field.inc.php on line 18

Warning: require_once(DIR_FS_INCxtc_draw_selection_field.inc.php) [function.require-once]: failed to open stream: No such file or directory in /hp/bx/aa/gc/www/httpdocs/shop/inc/xtc_draw_radio_field.inc.php on line 17

Fatal error: require_once() [function.require]: Failed opening required 'DIR_FS_INCxtc_draw_selection_field.inc.php' (include_path='.:/usr/share/php:/usr/share/pear') in /hp/bx/aa/gc/www/httpdocs/shop/inc/xtc_draw_radio_field.inc.php on line 17

Warning: require_once(DIR_FS_INCxtc_set_banner_status.inc.php) [function.require-once]: failed to open stream: No such file or directory in /hp/bx/aa/gc/www/httpdocs/shop/inc/xtc_expire_banners.inc.php on line 18

Fatal error: require_once() [function.require]: Failed opening required 'DIR_FS_INCxtc_set_banner_status.inc.php' (include_path='.:/usr/share/php:/usr/share/pear') in /hp/bx/aa/gc/www/httpdocs/shop/inc/xtc_expire_banners.inc.php on line 18

Warning: require_once(DIR_FS_INCxtc_set_specials_status.inc.php) [function.require-once]: failed to open stream: No such file or directory in /hp/bx/aa/gc/www/httpdocs/shop/inc/xtc_expire_specials.inc.php on line 17

Fatal error: require_once() [function.require]: Failed opening required 'DIR_FS_INCxtc_set_specials_status.inc.php' (include_path='.:/usr/share/php:/usr/share/pear') in /hp/bx/aa/gc/www/httpdocs/shop/inc/xtc_expire_specials.inc.php on line 17

Warning: require_once(DIR_FS_INCxtc_string_to_int.inc.php) [function.require-once]: failed to open stream: No such file or directory in /hp/bx/aa/gc/www/httpdocs/shop/inc/xtc_parse_category_path.inc.php on line 18

Fatal error: require_once() [function.require]: Failed opening required 'DIR_FS_INCxtc_string_to_int.inc.php' (include_path='.:/usr/share/php:/usr/share/pear') in /hp/bx/aa/gc/www/httpdocs/shop/inc/xtc_parse_category_path.inc.php on line 18

Warning: require_once(DIR_FS_INCxtc_exit.inc.php) [function.require-once]: failed to open stream: No such file or directory in /hp/bx/aa/gc/www/httpdocs/shop/inc/xtc_redirect.inc.php on line 20

Fatal error: require_once() [function.require]: Failed opening required 'DIR_FS_INCxtc_exit.inc.php' (include_path='.:/usr/share/php:/usr/share/pear') in /hp/bx/aa/gc/www/httpdocs/shop/inc/xtc_redirect.inc.php on line 20

Warning: require_once(DIR_FS_INCxtc_parse_input_field_data.inc.php) [function.require-once]: failed to open stream: No such file or directory in /hp/bx/aa/gc/www/httpdocs/shop/inc/xtc_image.inc.php on line 18

Fatal error: require_once() [function.require]: Failed opening required 'DIR_FS_INCxtc_parse_input_field_data.inc.php' (include_path='.:/usr/share/php:/usr/share/pear') in /hp/bx/aa/gc/www/httpdocs/shop/inc/xtc_image.inc.php on line 18

Fatal error: Call to undefined function xtc_db_connect() in /hp/bx/aa/gc/www/httpdocs/shop/includes/application_top.php on line 162
Meine erste Vermutung war, dass ich irgendetwas mit den Links in den Configuration.php verhauen habe, aber ich komme einfach nicht dahinter, was.
Ich hoffe ihr könnt mir helfen!


Die /admin/includes/configure.php
PHP-Code:

// Define the webserver and path parameters
// * DIR_FS_* = Filesystem directories (local/physical)
// * DIR_WS_* = Webserver directories (virtual/URL)
  
define('HTTP_SERVER''http://146824.webhosting53.1blu.de'); // eg, http://localhost or - https://localhost should not be empty for productive servers
  
define('HTTP_CATALOG_SERVER''http://146824.webhosting53.1blu.de');
  
define('HTTPS_CATALOG_SERVER''https://146824.webhosting53.1blu.de');
  
define('ENABLE_SSL_CATALOG''false'); // secure webserver for catalog module
  
define('DIR_FS_DOCUMENT_ROOT''http://146824.webhosting53.1blu.de/httpdocs/shop/'); // where the pages are located on the server
  
define('DIR_WS_ADMIN''/shop/admin/'); // absolute path required
  
define('DIR_FS_ADMIN''http://146824.webhosting53.1blu.de/httpdocs/shop/admin/'); // absolute pate required
  
define('DIR_WS_CATALOG''/shop/'); // absolute path required
  
define('DIR_FS_CATALOG''http://146824.webhosting53.1blu.de/httpdocs/shop/'); // absolute path required
  
define('DIR_WS_IMAGES''images/');
  
define('DIR_FS_CATALOG_IMAGES'DIR_FS_CATALOG 'images/');
  
define('DIR_FS_CATALOG_ORIGINAL_IMAGES'DIR_FS_CATALOG_IMAGES .'product_images/original_images/');
  
define('DIR_FS_CATALOG_THUMBNAIL_IMAGES'DIR_FS_CATALOG_IMAGES .'product_images/thumbnail_images/');
  
define('DIR_FS_CATALOG_INFO_IMAGES'DIR_FS_CATALOG_IMAGES .'product_images/info_images/');
  
define('DIR_FS_CATALOG_POPUP_IMAGES'DIR_FS_CATALOG_IMAGES .'product_images/popup_images/');
  
define('DIR_WS_ICONS'DIR_WS_IMAGES 'icons/');
  
define('DIR_WS_CATALOG_IMAGES'DIR_WS_CATALOG 'images/');
  
define('DIR_WS_CATALOG_ORIGINAL_IMAGES'DIR_WS_CATALOG_IMAGES .'product_images/original_images/');
  
define('DIR_WS_CATALOG_THUMBNAIL_IMAGES'DIR_WS_CATALOG_IMAGES .'product_images/thumbnail_images/');
  
define('DIR_WS_CATALOG_INFO_IMAGES'DIR_WS_CATALOG_IMAGES .'product_images/info_images/');
  
define('DIR_WS_CATALOG_POPUP_IMAGES'DIR_WS_CATALOG_IMAGES .'product_images/popup_images/');
  
define('DIR_WS_INCLUDES''includes/');
  
define('DIR_WS_BOXES'DIR_WS_INCLUDES 'boxes/');
  
define('DIR_WS_FUNCTIONS'DIR_WS_INCLUDES 'functions/');
  
define('DIR_WS_CLASSES'DIR_WS_INCLUDES 'classes/');
  
define('DIR_WS_MODULES'DIR_WS_INCLUDES 'modules/');
  
define('DIR_WS_LANGUAGES'DIR_WS_CATALOG'lang/');
  
define('DIR_FS_LANGUAGES'DIR_FS_CATALOG'lang/');
  
define('DIR_FS_CATALOG_MODULES'DIR_FS_CATALOG 'includes/modules/');
  
define('DIR_FS_BACKUP'DIR_FS_ADMIN 'backups/');
  
define('DIR_FS_INC'DIR_FS_CATALOG 'inc/');
  
define('DIR_WS_FILEMANAGER'DIR_WS_MODULES 'fckeditor/editor/filemanager/browser/default/');

// define our database connection
  
define('DB_SERVER''localhost'); // eg, localhost - should not be empty for productive servers
  
define('DB_SERVER_USERNAME''xxxx');
  
define('DB_SERVER_PASSWORD''xxxxxxx');
  
define('DB_DATABASE''xxxxx');
  
define('USE_PCONNECT''false'); // use persisstent connections?
  
define('STORE_SESSIONS'''); // leave empty '' for default handler or set to 'mysql'

?> 
Die includes/configure.php

PHP-Code:

// Define the webserver and path parameters
// * DIR_FS_* = Filesystem directories (local/physical)
// * DIR_WS_* = Webserver directories (virtual/URL)
  
define('HTTP_SERVER''http://146824.webhosting53.1blu.de'); // eg, http://localhost - should not be empty for productive servers
  
define('HTTPS_SERVER''https://l146824.webhosting53.1blu.de'); // eg, https://localhost - should not be empty for productive servers
  
define('ENABLE_SSL'false); // secure webserver for checkout procedure?
  
define('DIR_WS_CATALOG''/shop/'); // absolute path required
  
define('DIR_FS_DOCUMENT_ROOT''http://146824.webhosting53.1blu.de/httpdocs/shop/');
  
define('DIR_FS_CATALOG''http://146824.webhosting53.1blu.de/httpdocs/shop/');
  
define('DIR_WS_IMAGES''images/');
  
define('DIR_WS_ORIGINAL_IMAGES'DIR_WS_IMAGES .'product_images/original_images/');
  
define('DIR_WS_THUMBNAIL_IMAGES'DIR_WS_IMAGES .'product_images/thumbnail_images/');
  
define('DIR_WS_INFO_IMAGES'DIR_WS_IMAGES .'product_images/info_images/');
  
define('DIR_WS_POPUP_IMAGES'DIR_WS_IMAGES .'product_images/popup_images/');
  
define('DIR_WS_ICONS'DIR_WS_IMAGES 'icons/');
  
define('DIR_WS_INCLUDES',DIR_FS_DOCUMENT_ROOT'includes/');
  
define('DIR_WS_FUNCTIONS'DIR_WS_INCLUDES 'functions/');
  
define('DIR_WS_CLASSES'DIR_WS_INCLUDES 'classes/');
  
define('DIR_WS_MODULES'DIR_WS_INCLUDES 'modules/');
  
define('DIR_WS_LANGUAGES'DIR_FS_CATALOG 'lang/');

  
define('DIR_WS_DOWNLOAD_PUBLIC'DIR_WS_CATALOG 'pub/');
  
define('DIR_FS_DOWNLOAD'DIR_FS_CATALOG 'download/');
  
define('DIR_FS_DOWNLOAD_PUBLIC'DIR_FS_CATALOG 'pub/');
  
define('DIR_FS_INC'DIR_FS_CATALOG 'inc/');

// define our database connection
  
define('DB_SERVER''localhost'); // eg, localhost - should not be empty for productive servers
  
define('DB_SERVER_USERNAME''xxxxx');
  
define('DB_SERVER_PASSWORD''xxxxx');
  
define('DB_DATABASE''xxxxx');
  
define('USE_PCONNECT''false'); // use persistent connections?
  
define('STORE_SESSIONS'''); // leave empty '' for default handler or set to 'mysql'
?> 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
Antwort

Lesezeichen

Stichworte
fehler, serverwechsel

Themen-Optionen
Ansicht

Forumregeln
Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge hochzuladen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are aus
Pingbacks are aus
Refbacks are aus


Ähnliche Themen
Thema Autor Forum Antworten Letzter Beitrag
Content Fehler nach klonen ttsrache Installation und Konfiguration 0 19.02.2011 12:28
[SOLVED] Fehler nach Update auf 4.0.13 ice-ess Installation und Konfiguration 6 11.02.2011 13:06
Veyton 4.0 Copyright DIV Tag fehler nach W3C Check Klopapier mit Tigerlogo Fragen zur Software 6 28.05.2010 22:09


Alle Zeitangaben in WEZ +1. Es ist jetzt 17:46 Uhr.

Copyright © 2011 xt:Commerce GmbH / xt:Commerce International Ltd. - All Rights Reserved

xt:Commerce is a SafeCharge brand