spacecube Posted September 23, 2004 Report Share Posted September 23, 2004 Hi wissende, vielleicht gabs die frage schon mal, allerdings hab ich mittels suche nix gefunden. Wenn doch bitte link posten. Frage: wenn ein Kunde sich neu registriert, wird direkt der Warenkorb ge?ffnet. 1. Ist das richtig? 2. Sollte da nicht irgend ne Seite kommen in der drin steht das die Registration erfolgreich war? gr?ssle spacecube Link to comment Share on other sites More sharing options...
seek Posted September 24, 2004 Report Share Posted September 24, 2004 create_account.php Zeile 320: if (!isset($mail_error)) { xtc_redirect(xtc_href_link(FILENAME_SHOPPING_CART, '', 'SSL')); } else { echo $mail_error; } } } Ersetzen durch: if (!isset($mail_error)) { if (sizeof($_SESSION['navigation']->snapshot) > 0) { $origin_href = xtc_href_link($_SESSION['navigation']->snapshot['page'], xtc_array_to_string($_SESSION['navigation']->snapshot['get'], array(xtc_session_name())), $_SESSION['navigation']->snapshot['mode']); $_SESSION['navigation']->clear_snapshot(); xtc_redirect($origin_href); } else { xtc_redirect(xtc_href_link(FILENAME_DEFAULT)); } } else { echo $mail_error; } } } PS: Suche geht einzustellen auf mehr als 30 Tage, dann findest auch mehr. MfG Ren Link to comment Share on other sites More sharing options...
spacecube Posted September 27, 2004 Author Report Share Posted September 27, 2004 Danke f?r die antwort Ren?, hat geklappt. PS: ich such immer mit mehr als 30 Tagen...wahrscheinlich nur immer nach den falschen begriffen :pst: Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.