3bsstudio Posted November 30, 2022 Share Posted November 30, 2022 HI Hopefully you guys can help like you have in the past. The issue we have is when someone resets their password they don't see the 'Success message' to say it's been done. They do receive the password reset email OK but we need them to see the Success message to remind them to look in their inbox. Website: https://www.gasbottlesdirect.co.uk/password_forgotten.php TIA. Quote Link to comment Share on other sites More sharing options...
Jack_mcs Posted November 30, 2022 Share Posted November 30, 2022 4 hours ago, 3bsstudio said: we need them to see the Success message The way the code is meant to work in your version of oscommerce is that if a valid customer email address is entered the page is redirected to the login page and a message is displayed there. Does the page redirect when a valid address is entered? Quote Support Links: For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc. Get the latest versions of my addons Recommended SEO Addons Link to comment Share on other sites More sharing options...
3bsstudio Posted November 30, 2022 Author Share Posted November 30, 2022 You are redirected to the login page but no message is seen. Quote Link to comment Share on other sites More sharing options...
Jack_mcs Posted November 30, 2022 Share Posted November 30, 2022 Assuming the stock code hasn't been changed for either of those files, my guess would be that the session is getting lost. If you have the recreate session setting enabled in admin->Configuration->Sessions, you could try turning it off to see if it makes a difference. Although, if it does, I wouldn't suggest leaving it that way. Unfortunately, this is the sort of problem that can't be handled in a thread like this, at least by me. The fix would probably be relatively easy but I would need to see the code to see the reason for the failure to suggest something. Maybe someone else has a suggestion. Quote Support Links: For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc. Get the latest versions of my addons Recommended SEO Addons Link to comment Share on other sites More sharing options...
3bsstudio Posted December 1, 2022 Author Share Posted December 1, 2022 Here's the code if it helps: <?php /* $Id: password_forgotten.php,v 1.8 2003/06/09 22:46:46 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2003 osCommerce Released under the GNU General Public License */ define('NAVBAR_TITLE_1', 'Login'); define('NAVBAR_TITLE_2', 'Password Forgotten'); define('HEADING_TITLE', 'Forgotten your Password? <br><br> We\'ll email you a new one...'); define('TEXT_MAIN', 'If you\'ve forgotten your password, enter your e-mail below and we\'ll <strong>send you a new password to your email address</strong>. <br><br>Please check your <strong>inbox</strong> or <strong>junk mail folder</strong> for your new password.'); define('TEXT_NO_EMAIL_ADDRESS_FOUND', 'Error: The E-Mail Address was not found in our records, please try again.'); define('EMAIL_PASSWORD_REMINDER_SUBJECT', STORE_NAME . ' - New Password'); // start mod anagram systems //define('EMAIL_PASSWORD_REMINDER_BODY', 'A new password was requested from ' . $REMOTE_ADDR . '.' . "\n\n" . 'Your new password to \'' . STORE_NAME . '\' is:' . "\n\n" . ' %s' . "\n\n"); // >>> BEGIN REGISTER_GLOBALS define('EMAIL_PASSWORD_REMINDER_BODY', 'A new password was requested from ' . $_SERVER['REMOTE_ADDR'] . '.' . "\n\n" . 'Your new password to \'' . STORE_NAME . '\' is:' . "\n\n" . ' %s' . "\n\n"); // <<< END REGISTER_GLOBALS // end mod anagram systems define('SUCCESS_PASSWORD_SENT', 'Success: A new password has been sent to your e-mail address.'); ?> Quote Link to comment Share on other sites More sharing options...
bonbec Posted December 1, 2022 Share Posted December 1, 2022 Hello, In the catalog/password_forgotten.php, do you have this line ? : $messageStack->add_session('login', SUCCESS_PASSWORD_SENT, 'success'); Quote with OsC 2.2 since 2006 ... Link to comment Share on other sites More sharing options...
3bsstudio Posted December 1, 2022 Author Share Posted December 1, 2022 Yes, see green line below: <?php /* $Id: password_forgotten.php,v 1.50 2003/06/05 23:28:24 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2003 osCommerce Released under the GNU General Public License */ require('includes/application_top.php'); require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_PASSWORD_FORGOTTEN); if (isset($HTTP_GET_VARS['action']) && ($HTTP_GET_VARS['action'] == 'process')) { $email_address = tep_db_prepare_input($HTTP_POST_VARS['email_address']); $check_customer_query = tep_db_query("select customers_firstname, customers_lastname, customers_password, customers_id from " . TABLE_CUSTOMERS . " where customers_email_address = '" . tep_db_input($email_address) . "'"); if (tep_db_num_rows($check_customer_query)) { $check_customer = tep_db_fetch_array($check_customer_query); $new_password = tep_create_random_value(ENTRY_PASSWORD_MIN_LENGTH); $crypted_password = tep_encrypt_password($new_password); tep_db_query("update " . TABLE_CUSTOMERS . " set customers_password = '" . tep_db_input($crypted_password) . "' where customers_id = '" . (int)$check_customer['customers_id'] . "'"); tep_mail($check_customer['customers_firstname'] . ' ' . $check_customer['customers_lastname'], $email_address, EMAIL_PASSWORD_REMINDER_SUBJECT, sprintf(EMAIL_PASSWORD_REMINDER_BODY, $new_password), STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS); $messageStack->add_session('login', SUCCESS_PASSWORD_SENT, 'success'); tep_redirect(tep_href_link(FILENAME_LOGIN, '', 'SSL')); } else { $messageStack->add('password_forgotten', TEXT_NO_EMAIL_ADDRESS_FOUND); } } $breadcrumb->add(NAVBAR_TITLE_1, tep_href_link(FILENAME_LOGIN, '', 'SSL')); $breadcrumb->add(NAVBAR_TITLE_2, tep_href_link(FILENAME_PASSWORD_FORGOTTEN, '', 'SSL')); ?> <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN"> <html <?php echo HTML_PARAMS; ?>> <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> <title><?php echo TITLE; ?></title> <base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> </head> <body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0"> <!-- header //--> <?php require(DIR_WS_INCLUDES . 'header.php'); ?> <!-- header_eof //--> <!-- body //--> <table border="0" width="100%" cellspacing="3" cellpadding="3"> <tr> <td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2"> <!-- left_navigation //--> <?php require(DIR_WS_INCLUDES . 'column_left.php'); ?> <!-- left_navigation_eof //--> </table></td> <!-- body_text //--> <td width="100%" valign="top"><?php echo tep_draw_form('password_forgotten', tep_href_link(FILENAME_PASSWORD_FORGOTTEN, 'action=process', 'SSL')); ?><table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td><table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td class="pageHeading"><?php echo HEADING_TITLE; ?></td> <td class="pageHeading" align="right"><?php echo tep_image(DIR_WS_IMAGES . 'table_background_password_forgotten.gif', HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td> </tr> </table></td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <?php if ($messageStack->size('password_forgotten') > 0) { ?> <tr> <td><?php echo $messageStack->output('password_forgotten'); ?></td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <?php } ?> <tr> <td><table border="0" width="100%" height="100%" cellspacing="1" cellpadding="2" class="infoBox"> <tr class="infoBoxContents"> <td><table border="0" width="100%" height="100%" cellspacing="0" cellpadding="2"> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td class="main" colspan="2"><?php echo TEXT_MAIN; ?></td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td class="main"><?php echo '<b>' . ENTRY_EMAIL_ADDRESS . '</b> ' . tep_draw_input_field('email_address'); ?></td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> </table></td> </tr> </table></td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox"> <tr class="infoBoxContents"> <td><table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td> <td><?php echo '<a href="' . tep_href_link(FILENAME_LOGIN, '', 'SSL') . '">' . tep_image_button('button_back.gif', IMAGE_BUTTON_BACK) . '</a>'; ?></td> <td align="right"><?php echo tep_image_submit('button_continue.gif', IMAGE_BUTTON_CONTINUE); ?></td> <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td> </tr> </table></td> </tr> </table></td> </tr> </table></form></td> <!-- body_text_eof //--> <td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2"> <!-- right_navigation //--> <?php require(DIR_WS_INCLUDES . 'column_right.php'); ?> <!-- right_navigation_eof //--> </table></td> </tr> </table> <!-- body_eof //--> <!-- footer //--> <?php require(DIR_WS_INCLUDES . 'footer.php'); ?> <!-- footer_eof //--> <br> </body> </html> Quote Link to comment Share on other sites More sharing options...
bonbec Posted December 1, 2022 Share Posted December 1, 2022 I created an account to see. The message actually does not appear. The session is stored in the sessions table in the database? If yes, look at the pjfd52qkr32ed4tqrgo4rpatd4 session to see if the password sending success message is present. Quote with OsC 2.2 since 2006 ... Link to comment Share on other sites More sharing options...
3bsstudio Posted December 1, 2022 Author Share Posted December 1, 2022 Recreate session is set to false in admin. Can't find any sessions stored in the database so don't think it's storing them anyway. Quote Link to comment Share on other sites More sharing options...
bonbec Posted December 1, 2022 Share Posted December 1, 2022 Ok, if it's not in the database, it can be stored in a directory defined in your session admin. Other idea : in the catalog/login.php, do you have these lines ? : if ($messageStack->size('login') > 0) { ?> <TR> <TD><?php echo $messageStack->output('login'); ?></TD> </TR> <TR> <TD><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></TD> </TR> <?php } Quote with OsC 2.2 since 2006 ... Link to comment Share on other sites More sharing options...
3bsstudio Posted December 1, 2022 Author Share Posted December 1, 2022 I certainly do... Quote Link to comment Share on other sites More sharing options...
bonbec Posted December 1, 2022 Share Posted December 1, 2022 It's work now ! What do you do ? Quote with OsC 2.2 since 2006 ... Link to comment Share on other sites More sharing options...
3bsstudio Posted December 1, 2022 Author Share Posted December 1, 2022 I've just tried it and it doesn't work for me? Quote Link to comment Share on other sites More sharing options...
bonbec Posted December 1, 2022 Share Posted December 1, 2022 In fact I stayed on the page and asked for a new password a second time. If I leave the site and come back, it doesn't work. If I immediately ask for a new password, it works. Quote with OsC 2.2 since 2006 ... Link to comment Share on other sites More sharing options...
3bsstudio Posted December 1, 2022 Author Share Posted December 1, 2022 How weird is that? Any ideas on that? Quote Link to comment Share on other sites More sharing options...
bonbec Posted December 5, 2022 Share Posted December 5, 2022 no, I tried to reproduce this on my shop, but without success. Quote with OsC 2.2 since 2006 ... Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.