Shop Hosting
Neuigkeiten
  • Die modified eCommerce Shopsoftware ist kostenlos, aber nicht umsonst.
    Spenden
  • Damit wir die modified eCommerce Shopsoftware auch zukünftig kostenlos anbieten können:
    Spenden
  • Thema: Fatal error nach Installation

    Cathyupea

    • Neu im Forum
    • Beiträge: 22
    Fatal error nach Installation
    am: 03. März 2010, 18:37:14
    Hallo Liebes Forum,

    hab zwar schon Beiträge zum Thema "installations Fehler" gelesen aber leider war nichts dabei was mein problem betrifft. Auf meinem Xampp Server funktioniert alles einwandfrei.

    FTP Programme: FireFTP & WS FTP Professional
    Hoster: Hosteurope
    PHP Version: 5.2.12
    MySQL Version:    5.0.32

    Warning: require_once(/is/htdocs/wp1142509_0O1RKQYB5Y/www/shop//inc/xtc_db_queryCached.inc.php) [function.require-once]: failed to open stream: No such file or directory in /is/htdocs/wp1142509_0O1RKQYB5Y/www/shop/includes/application_top.php  on line 116

    Fatal error: require_once() [function.require]: Failed opening required '/is/htdocs/wp1142509_0O1RKQYB5Y/www/shop//inc/xtc_db_queryCached.inc.php' (include_path='.:/usr/share/pear/php5') in /is/htdocs/wp1142509_0O1RKQYB5Y/www/shop/includes/application_top.php on line 116



    Linkback: https://www.modified-shop.org/forum/index.php?topic=4348.0

    Tomcraft

    • modified Team
    • Gravatar
    • Beiträge: 46.369
    • Geschlecht:
    Fatal error nach Installation
    Antwort #1 am: 03. März 2010, 19:15:34
    Poste mal bitte den Inhalt der Dateien "/includes/configure.php" und "/admin/includes/configure.php" (entferne bitte vorher die Passwörter!).

    Grüße

    Torsten

    Cathyupea

    • Neu im Forum
    • Beiträge: 22
    Fatal error nach Installation
    Antwort #2 am: 03. März 2010, 19:46:14
    Hallo Danke für die Antwort,

    Hier die /includes/configure.php

    Code: PHP  [Auswählen]
    // Define the webserver and path parameters
    // * DIR_FS_* = Filesystem directories (local/physical)
    // * DIR_WS_* = Webserver directories (virtual/URL)
      define('HTTP_SERVER', 'http://www.mvidela.yourweb.de'); // eg, http://localhost or - https://localhost should not be empty for productive servers
      define('HTTP_CATALOG_SERVER', 'http://www.mvidela.yourweb.de');
      define('HTTPS_CATALOG_SERVER', 'https://www.mvidela.yourweb.de');
      define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module
      define('DIR_FS_DOCUMENT_ROOT', '/is/htdocs/wp1142509_0O1RKQYB5Y/www/shop/'); // where the pages are located on the server
      define('DIR_WS_ADMIN', 'http://www.mvidela.yourweb.de/admin/'); // absolute path required
      define('DIR_FS_ADMIN', '/is/htdocs/wp1142509_0O1RKQYB5Y/www/shop/admin/'); // absolute pate required
      define('DIR_WS_CATALOG', 'http://www.mvidela.yourweb.de/'); // absolute path required
      define('DIR_FS_CATALOG', '/is/htdocs/wp1142509_0O1RKQYB5Y/www/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/');
     
    Und die /admin/includes/configure.php

    Code: PHP  [Auswählen]
    // Define the webserver and path parameters
    // * DIR_FS_* = Filesystem directories (local/physical)
    // * DIR_WS_* = Webserver directories (virtual/URL)
      define('HTTP_SERVER', 'http://www.mvidela.yourweb.de'); // eg, http://localhost or - https://localhost should not be empty for productive servers
      define('HTTP_CATALOG_SERVER', 'http://www.mvidela.yourweb.de');
      define('HTTPS_CATALOG_SERVER', 'https://www.mvidela.yourweb.de');
      define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module
      define('DIR_FS_DOCUMENT_ROOT', '/is/htdocs/wp1142509_0O1RKQYB5Y/www/shop/'); // where the pages are located on the server
      define('DIR_WS_ADMIN', 'http://www.mvidela.yourweb.de/admin/'); // absolute path required
      define('DIR_FS_ADMIN', '/is/htdocs/wp1142509_0O1RKQYB5Y/www/shop/admin/'); // absolute pate required
      define('DIR_WS_CATALOG', 'http://www.mvidela.yourweb.de/'); // absolute path required
      define('DIR_FS_CATALOG', '/is/htdocs/wp1142509_0O1RKQYB5Y/www/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/');
     

    Tomcraft

    • modified Team
    • Gravatar
    • Beiträge: 46.369
    • Geschlecht:
    Fatal error nach Installation
    Antwort #3 am: 03. März 2010, 19:54:23
    Das passt so nicht, das ist beides mal die "/admin/inclides/configure.php"!

    Grüße

    Torsten

    vr

    • modified Team
    • Beiträge: 2.664
    Fatal error nach Installation
    Antwort #4 am: 03. März 2010, 19:56:49
    Hallo Cathyupea,

    trag mal bitte in den configure-Dateien folgende Werte in diese beiden Konstanten ein:

    DIR_WS_CATALOG : '/'
    DIR_WS_ADMIN : '/admin/'

    Grüße, Volker

    Cathyupea

    • Neu im Forum
    • Beiträge: 22
    Fatal error nach Installation
    Antwort #5 am: 03. März 2010, 20:19:06
    ach verdammt jetzt hab ich die beide überschrieben. :-) Nochmal grad neuinstalliert:
    Hier die Fehlermeldung:
    Warning: require_once(/is/htdocs/wp1142509_0O1RKQYB5Y/www//xtc/inc/xtc_db_queryCached.inc.php) [function.require-once]: failed to open stream: No such file or directory in /is/htdocs/wp1142509_0O1RKQYB5Y/www/xtc/includes/application_top.php on line 116

    Fatal error: require_once() [function.require]: Failed opening required '/is/htdocs/wp1142509_0O1RKQYB5Y/www//xtc/inc/xtc_db_queryCached.inc.php' (include_path='.:/usr/share/pear/php5') in /is/htdocs/wp1142509_0O1RKQYB5Y/www/xtc/includes/application_top.php on line 116

    die NORMALE Config Datei:

    Code: PHP  [Auswählen]
    // Define the webserver and path parameters
    // * DIR_FS_* = Filesystem directories (local/physical)
    // * DIR_WS_* = Webserver directories (virtual/URL)
      define('HTTP_SERVER', 'http://www.mvidela.yourweb.de'); // eg, http://localhost - should not be empty for productive servers
      define('HTTPS_SERVER', 'https://www.mvidela.yourweb.de'); // eg, https://localhost - should not be empty for productive servers
      define('ENABLE_SSL', false); // secure webserver for checkout procedure?
      define('DIR_WS_CATALOG', '/xtc/'); // absolute path required
      define('DIR_FS_DOCUMENT_ROOT', '/is/htdocs/wp1142509_0O1RKQYB5Y/www//xtc/');
      define('DIR_FS_CATALOG', '/is/htdocs/wp1142509_0O1RKQYB5Y/www//xtc/');
      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', 'wp162.webpack.hosteurope.de'); // eg, localhost - should not be empty for productive servers
      define('DB_SERVER_USERNAME', 'XXXXXXXX');
      define('DB_SERVER_PASSWORD', 'XXXXXXXX');
      define('DB_DATABASE', 'XXXXXXXX');
      define('USE_PCONNECT', 'false'); // use persistent connections?
      define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql'
    ?>
     
    Und die Config datei aus admin/includes

    Code: PHP  [Auswählen]
    // Define the webserver and path parameters
    // * DIR_FS_* = Filesystem directories (local/physical)
    // * DIR_WS_* = Webserver directories (virtual/URL)
      define('HTTP_SERVER', 'http://www.mvidela.yourweb.de'); // eg, http://localhost or - https://localhost should not be empty for productive servers
      define('HTTP_CATALOG_SERVER', 'http://www.mvidela.yourweb.de');
      define('HTTPS_CATALOG_SERVER', 'https://www.mvidela.yourweb.de');
      define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module
      define('DIR_FS_DOCUMENT_ROOT', '/is/htdocs/wp1142509_0O1RKQYB5Y/www//xtc/'); // where the pages are located on the server
      define('DIR_WS_ADMIN', '/xtc/admin/'); // absolute path required
      define('DIR_FS_ADMIN', '/is/htdocs/wp1142509_0O1RKQYB5Y/www//xtc/admin/'); // absolute pate required
      define('DIR_WS_CATALOG', '/xtc/'); // absolute path required
      define('DIR_FS_CATALOG', '/is/htdocs/wp1142509_0O1RKQYB5Y/www//xtc/'); // 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', 'wp162.webpack.hosteurope.de'); // eg, localhost - should not be empty for productive servers
      define('DB_SERVER_USERNAME', 'XXXXXXXXX');
      define('DB_SERVER_PASSWORD', 'XXXXXXXXX');
      define('DB_DATABASE', 'XXXXXXXXX');
      define('USE_PCONNECT', 'false'); // use persisstent connections?
      define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql'
     

    Tomcraft

    • modified Team
    • Gravatar
    • Beiträge: 46.369
    • Geschlecht:
    Fatal error nach Installation
    Antwort #6 am: 03. März 2010, 20:22:44
    Entferne mal in den Pfaden nach /www// die Doppel-Slashes. Ein Slash sollte reichen. ;-)

    Grüße

    Torsten

    web28

    • modified Team
    • Beiträge: 9.404
    Fatal error nach Installation
    Antwort #7 am: 03. März 2010, 20:24:07
    @Cathyupea

    eine Subdomain mit www. geht nicht!  :datz:

    Das ist falsch:

    http://www.mvidela.yourweb.de*)

    Das ist richtig:

    http://mvidela.yourweb.de

    Gruss Web28

    *) Das ist eine SubSubDomain und das wird von recht wenigen Providern gestattet! ;)

    Cathyupea

    • Neu im Forum
    • Beiträge: 22
    Fatal error nach Installation
    Antwort #8 am: 04. März 2010, 11:08:11
    Ah Danke,

    klappt leider immernoch nicht. hab eine richtige Domain verwendet und neu installiert und alle Doppel Slashes entfernt.. der fehler ist immernoch der Selbe

    web28

    • modified Team
    • Beiträge: 9.404
    Fatal error nach Installation
    Antwort #9 am: 04. März 2010, 16:17:34
    Bitte nimm mal diesen Installer:

    NEUER modified eCommerce Shopsoftware INSTALLER, mit STRATO Fix

    Gruss Web28

    Cathyupea

    • Neu im Forum
    • Beiträge: 22
    Fatal error nach Installation
    Antwort #10 am: 04. Mai 2010, 15:24:23
    Hab den Fehler gefunden, der hat die Dateien nicht vollständig hochgeladen, blödes WS_FTP Pro!  :?

    Tomcraft

    • modified Team
    • Gravatar
    • Beiträge: 46.369
    • Geschlecht:
    Fatal error nach Installation
    Antwort #11 am: 04. Mai 2010, 15:41:08
    Argh... danke für die Rückmeldung, auch wenn es ganz schön lange gedauert hat. *gg*

    Grüße

    Torsten

    DokuMan

    • modified Team
    • Beiträge: 6.669
    • Geschlecht:
    Fatal error nach Installation
    Antwort #12 am: 04. Mai 2010, 15:55:46
    Entferne mal in den Pfaden nach /www// die Doppel-Slashes. Ein Slash sollte reichen. ;-)

    Doch, bei Hosteurope stimmen die Doppelslashes schon. Das ist eine Eigenheit bei denen.