Sonderposten Willi Posted August 17, 2006 Report Share Posted August 17, 2006 Hallo, ich habe XTC 3.4. Mein Provider hatte meinen Webspace auf PHP 5 umgestellt. Seitdem geht mein Login nicht mehr (ich komme immer wieder auf die Startseite). AUch mit alternativen Zugangsdaten und von anderen Rechnern funktioniert nichts. Weiterhin lassen sich alle Links auf der linken Seite (wie Kategorien), AGBs uns. anklicken, man kommt aber auch hier immer wieder auf die Startseite und es werden keine Artikel in den Kategorien angezeigt und z.B. auch keine AGBs. Lediglich die neuen Artikel werden auf der Startseite automatisch angezeigt. In der Datenbank sind sowohl die ARtikel als auch AGB etc. hinterlegt und auch noch da ;-) Mein Provider hat jetzt wieder auf PHP 4 umgestellt, läuft aber weiterhin nix. Wer kann mir helfen? Grüße Willi Link to comment Share on other sites More sharing options...
RDS Posted August 19, 2006 Report Share Posted August 19, 2006 Hallo, ich habe XTC 3.4. Mein Provider hatte meinen Webspace auf PHP 5 umgestellt. Seitdem geht mein Login nicht mehr (ich komme immer wieder auf die Startseite). AUch mit alternativen Zugangsdaten und von anderen Rechnern funktioniert nichts. Weiterhin lassen sich alle Links auf der linken Seite (wie Kategorien), AGBs uns. anklicken, man kommt aber auch hier immer wieder auf die Startseite und es werden keine Artikel in den Kategorien angezeigt und z.B. auch keine AGBs. Lediglich die neuen Artikel werden auf der Startseite automatisch angezeigt. In der Datenbank sind sowohl die ARtikel als auch AGB etc. hinterlegt und auch noch da ;-) Mein Provider hat jetzt wieder auf PHP 4 umgestellt, läuft aber weiterhin nix. Wer kann mir helfen? Grüße Willi Grüss Gott, Also - 3.4 läuft auf PHP 5 wunderbar (ist dafür ausgelegt).Kann es sein,das eventuell noch ein paar Dateien (configure.php,configure.org.php) umgeändert worden sind (nicht vom Provider)? Jürgen Link to comment Share on other sites More sharing options...
Sonderposten Willi Posted August 24, 2006 Author Report Share Posted August 24, 2006 Hallo, geändert wurde definitv nichts von uns. Es erfolgte nur die Umstellung auf PHP 5 und seitdem geht kein Login und nix. Kannst ja mal reinschauen: www.dascockpit.de. Vielen Dank für die Mühe und Grüße Willi Link to comment Share on other sites More sharing options...
Sonderposten Willi Posted August 24, 2006 Author Report Share Posted August 24, 2006 <?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.dascockpit.de'); // eg, http://localhost or - https://localhost should not be empty for productive servers define('HTTP_CATALOG_SERVER', 'http://www.dascockpit.de'); define('HTTPS_CATALOG_SERVER', 'https://www.dascockpit.de'); define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module define('DIR_FS_DOCUMENT_ROOT', '/home/www/web84/html/neu/'); // where the pages are located on the server define('DIR_WS_ADMIN', '/neu/admin/'); // absolute path required define('DIR_FS_ADMIN', '/home/www/web84/html/neu/admin/'); // absolute pate required define('DIR_WS_CATALOG', '/neu/'); // absolute path required define('DIR_FS_CATALOG', '/home/www/web84/html/neu/'); // 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', 'XXXXX'); define('DB_SERVER_PASSWORD', 'XXXXXXXX'); define('DB_DATABASE', 'usr_web84_1'); define('USE_PCONNECT', 'false'); // use persisstent connections? define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql' ?> Link to comment Share on other sites More sharing options...
Sonderposten Willi Posted August 24, 2006 Author Report Share Posted August 24, 2006 <?php /* -------------------------------------------------------------- ### Be careful, this is the backup of your original configuration data ### 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.dascockpit.de'); // eg, http://localhost or - https://localhost should not be empty for productive servers define('HTTP_CATALOG_SERVER', 'http://www.dascockpit.de'); define('HTTPS_CATALOG_SERVER', 'https://www.dascockpit.de'); define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module define('DIR_FS_DOCUMENT_ROOT', '/home/www/web84/html/neu/'); // where the pages are located on the server define('DIR_WS_ADMIN', '/admin/'); // absolute path required define('DIR_FS_ADMIN', '/home/www/web84/html/neu/admin/'); // absolute pate required define('DIR_WS_CATALOG', '/neu/'); // absolute path required define('DIR_FS_CATALOG', '/home/www/web84/html/neu/'); // 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', 'XXXXX'); define('DB_DATABASE', 'usr_web84_1'); define('USE_PCONNECT', 'false'); // use persisstent connections? define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql' ?> SERVERNAME UND PASSWORT HABE ICH HIER GE "X" t, stimmen in beiden Dokumenten überein. Link to comment Share on other sites More sharing options...
RDS Posted August 24, 2006 Report Share Posted August 24, 2006 <?php /* -------------------------------------------------------------- ### Be careful, this is the backup of your original configuration data ### 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.dascockpit.de'); // eg, http://localhost or - https://localhost should not be empty for productive servers define('HTTP_CATALOG_SERVER', 'http://www.dascockpit.de'); define('HTTPS_CATALOG_SERVER', 'https://www.dascockpit.de'); define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module define('DIR_FS_DOCUMENT_ROOT', '/home/www/web84/html/neu/'); // where the pages are located on the server define('DIR_WS_ADMIN', '/admin/'); // absolute path required define('DIR_FS_ADMIN', '/home/www/web84/html/neu/admin/'); // absolute pate required define('DIR_WS_CATALOG', '/neu/'); // absolute path required define('DIR_FS_CATALOG', '/home/www/web84/html/neu/'); // 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', 'XXXXX'); define('DB_DATABASE', 'usr_web84_1'); define('USE_PCONNECT', 'false'); // use persisstent connections? define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql' ?> SERVERNAME UND PASSWORT HABE ICH HIER GE "X" t, stimmen in beiden Dokumenten überein. Ändere einmal in configure.org.php dieses um:define('DIR_WS_ADMIN', '/admin/'); // absolute path required in define('DIR_WS_ADMIN', '/neu/admin/'); // absolute path required Configure.php und configure.org.php müssen gleich sein. In Datenbank die Session leeren und in costumer'id sollte der Admin auf 1 stehen.prüfen!! Jüergen Link to comment Share on other sites More sharing options...
Sonderposten Willi Posted August 25, 2006 Author Report Share Posted August 25, 2006 Hallo Juergen, danke, dass du dich meines Problems angenommen hast. Die Zeile define('DIR_WS_ADMIN', '/neu/admin/'); // absolute path required hatte ich direkt nach dem Posting geändert, hat nichts genutzt. DieTabelle Customers sieht, was meine Zeile betrifft, so aus: ****************************************** vollständige Textfelder customers_id customers_cid customers_vat_id customers_vat_id_status customers_warning customers_status customers_gender customers_firstname customers_lastname customers_dob customers_email_address customers_default_address_id customers_telephone customers_fax customers_password customers_newsletter customers_newsletter_mode member_flag delete_user account_type password_request_key payment_unallowed shipping_unallowed refferers_id customers_date_added customers_last_modified Bearbeiten Löschen 1 NULL NULL 0 NULL 1 Michael Lampel 0000-00-00 00:00:00 [email protected] 1 01756780330 NULL ********************************************** D.h. hier ist auch alles korrekt eingestellt. Wenn ich einen neuen Kunden anlege, kann ich mich mit den neuen Zugangsdaten auch nicht einloggen. Ist bestimmt irgendein Problem mit einem Pfad, es wurde aber (hoch und heilig versprochen)! überhaupt nichts verändert. So etwas passiert wohl öfters mal (auch wenn es keiner wahrhaben will und immer unterstellt wird, man habe etwas geändert) und ich weiss langsam keinen Rat mehr. Es hilf wohl nur eine Neuinstallation, oder? Ich kann dir auch mal die Zugangsdaten per PM schicken, wenn du dir die Mühe machen willst. Der DAtenbank Cache konnte noch nicht geleert werden, musste erst die Rechte dazu beantragen, das wird wohl heute noch passieren. Grüße Michel Link to comment Share on other sites More sharing options...
RDS Posted August 29, 2006 Report Share Posted August 29, 2006 Hallo Juergen, danke, dass du dich meines Problems angenommen hast. Die Zeile define('DIR_WS_ADMIN', '/neu/admin/'); // absolute path required hatte ich direkt nach dem Posting geändert, hat nichts genutzt. DieTabelle Customers sieht, was meine Zeile betrifft, so aus: ****************************************** vollständige Textfelder customers_id customers_cid customers_vat_id customers_vat_id_status customers_warning customers_status customers_gender customers_firstname customers_lastname customers_dob customers_email_address customers_default_address_id customers_telephone customers_fax customers_password customers_newsletter customers_newsletter_mode member_flag delete_user account_type password_request_key payment_unallowed shipping_unallowed refferers_id customers_date_added customers_last_modified Bearbeiten Löschen 1 NULL NULL 0 NULL 1 Michael Lampel 0000-00-00 00:00:00 [email protected] 1 01756780330 NULL ********************************************** D.h. hier ist auch alles korrekt eingestellt. Wenn ich einen neuen Kunden anlege, kann ich mich mit den neuen Zugangsdaten auch nicht einloggen. Ist bestimmt irgendein Problem mit einem Pfad, es wurde aber (hoch und heilig versprochen)! überhaupt nichts verändert. So etwas passiert wohl öfters mal (auch wenn es keiner wahrhaben will und immer unterstellt wird, man habe etwas geändert) und ich weiss langsam keinen Rat mehr. Es hilf wohl nur eine Neuinstallation, oder? Ich kann dir auch mal die Zugangsdaten per PM schicken, wenn du dir die Mühe machen willst. Der DAtenbank Cache konnte noch nicht geleert werden, musste erst die Rechte dazu beantragen, das wird wohl heute noch passieren. Grüße Michel Dann mach mal,. jürgen Link to comment Share on other sites More sharing options...
Sonderposten Willi Posted August 29, 2006 Author Report Share Posted August 29, 2006 Hallo Jürgen! Was machen? Die Zugangsdaten hab ich schon zweimal geschickt... Grüße Michel Link to comment Share on other sites More sharing options...
RDS Posted August 30, 2006 Report Share Posted August 30, 2006 Dieser Thread kann geschlossen werden.Es fehlten Dateien und die Session sowie Friendly-URL ließen keinen Admin zu. Jürgen Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.