OMWB Posted November 17, 2008 Report Share Posted November 17, 2008 Hallo zusammen, ich habe hier einiges zu meinem Problem gelesen und auch versucht, komme aber leider nicht weiter! Ich habe den Shop, bzw die ganzen Dateien auf dem Server wie folgt liegen: ..../html/webshop/jetzt alle Dateien Nun muß ich das alles einen Ordner höher schieben: .../html/jetzt alle Dateien Ich hoffe Ihr versteht was ich meine!? Die Dateien habe ich bereits alle verschoben und die Dateien /includes/configure.php und /admin/includes/configure.php entsprechend geändert. Leider funktioniert es so nicht. Was mache ich falsch bzw. wie mache ich es richtig? Hoffe Ihr könnt mir hlefen! Link to comment Share on other sites More sharing options...
hubbabubba Posted November 17, 2008 Report Share Posted November 17, 2008 Leider funktioniert es so nicht. Was mache ich falsch Doch doch. Du machst das im Grundsatz richtig. Du hast wahrscheinlich die configure.php nicht korrekt angepasst. Du musst die Web- (http) sowie die Dateipfade editieren. Hast du das "webshop/" überall entfernt? mfg Link to comment Share on other sites More sharing options...
OMWB Posted November 18, 2008 Author Report Share Posted November 18, 2008 Hallo hubbabubba, besten Dank für Deine Antwort:D Hmmmm...eigentlich schon...ich werde heute Mittag mal die beiden Sripts hier einfügen. Wäre nett wenn Du dann mal rüberschauen könntest...eventuell findest Du meinen Fehler?! Link to comment Share on other sites More sharing options...
OMWB Posted November 22, 2008 Author Report Share Posted November 22, 2008 Sorry daß es länger gedauert hat aber ich hatte die letzten Tage Doppelschicht. Das wäre die admin/includes/configure: <?php /* -------------------------------------------------------------- XT-Commerce - community made shopping http://www.xt-commerce.com Copyright © 2003 XT-Commerce -------------------------------------------------------------- based on: © 2000-2001 The Exchange Project (earlier name of osCommerce) © 2002-2003 osCommerce (configure.php,v 1.14 2003/02/21); www.oscommerce.com Released under the GNU General Public License --------------------------------------------------------------*/ // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://www.der-boersch.de'); // eg, http://localhost or - https://localhost should not be empty for productive servers define('HTTP_CATALOG_SERVER', 'http://www.der-boersch.de'); define('HTTPS_CATALOG_SERVER', 'https://www.der-boersch.de'); define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module define('DIR_FS_DOCUMENT_ROOT', '/var/www/ud09_440/html'); // where the pages are located on the server define('DIR_WS_ADMIN', '/admin/'); // absolute path required define('DIR_FS_ADMIN', '/var/www/ud09_440/html/admin'); // absolute pate required define('DIR_WS_CATALOG', '/'); // absolute path required define('DIR_FS_CATALOG', '/var/www/ud09_440/html'); // 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', 'sql2.udmedia.de'); // eg, localhost - should not be empty for productive servers define('DB_SERVER_USERNAME', 'ud09_440'); define('DB_SERVER_PASSWORD', '******'); define('DB_DATABASE', 'usr_ud09_440_1'); define('USE_PCONNECT', 'false'); // use persisstent connections? define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql' ?> Und daß die includes/configures: <?php /* -------------------------------------------------------------- XT-Commerce - community made shopping http://www.xt-commerce.com Copyright © 2003 XT-Commerce -------------------------------------------------------------- based on: © 2000-2001 The Exchange Project (earlier name of osCommerce) © 2002-2003 osCommerce (configure.php,v 1.13 2003/02/10); www.oscommerce.com Released under the GNU General Public License --------------------------------------------------------------*/ // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://www.der-boersch.de'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://www.der-boersch.de'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', false); // secure webserver for checkout procedure? define('DIR_WS_CATALOG', '/'); // absolute path required define('DIR_FS_DOCUMENT_ROOT', '/var/www/ud09_440/html'); define('DIR_FS_CATALOG', '/var/www/ud09_440/html'); 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', 'sql2.udmedia.de'); // eg, localhost - should not be empty for productive servers define('DB_SERVER_USERNAME', 'ud09_440'); define('DB_SERVER_PASSWORD', '******'); define('DB_DATABASE', 'usr_ud09_440_1'); define('USE_PCONNECT', 'false'); // use persistent connections? define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql' ?> Wäre schön wenn Du mir da weiter helfen könntest! Wahrscheinlich sehe ich zurzeit den Wald vor lauter Bäumen nicht? Link to comment Share on other sites More sharing options...
hubbabubba Posted November 22, 2008 Report Share Posted November 22, 2008 Bei den DIR_FS_ -Werten muß ein abschließendes Slash ("/") stehen. mfg Link to comment Share on other sites More sharing options...
OMWB Posted November 24, 2008 Author Report Share Posted November 24, 2008 Aha...ehrlich gesagt verstehe ich das nicht ganz, da ich eigentlich nur in den entsprechenden Zeilen die Pfadangabe wo der Shop liegt geändert habe...alles andere habe ich so belassen wie es war. Ich werde wohl leider erst zum Wochenende dazu kommen weiter zu basteln, Du hörst, bzw. liest von mir. Erst mal vielen Dank! Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.