Mot de passe oublie
Fermé
kapparim
-
Modifié le 18 oct. 2022 à 17:47
jordane45 Messages postés 38392 Date d'inscription mercredi 22 octobre 2003 Statut Modérateur Dernière intervention 23 janvier 2025 - 18 oct. 2022 à 17:49
jordane45 Messages postés 38392 Date d'inscription mercredi 22 octobre 2003 Statut Modérateur Dernière intervention 23 janvier 2025 - 18 oct. 2022 à 17:49
A voir également:
- Mot de passe oublie
- Mot de passe administrateur oublié - Guide
- Schéma téléphone oublié - Guide
- Trousseau mot de passe iphone - Guide
- Voir mot de passe wifi android - Guide
- Mot de passe - Guide
4 réponses
yg_be
Messages postés
23436
Date d'inscription
lundi 9 juin 2008
Statut
Contributeur
Dernière intervention
23 janvier 2025
Ambassadeur
1 559
18 oct. 2022 à 15:14
18 oct. 2022 à 15:14
bonjour,
Quand tu postes du code, utilise ceci: https://codes-sources.commentcamarche.net/faq/11288-poster-un-extrait-de-code
Cela nous aidera à repérer la ligne 77.
<?php echo 'PHP version: ' . phpversion(); /** * This file is part of OXID eShop Community Edition. * * OXID eShop Community Edition is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * OXID eShop Community Edition is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OXID eShop Community Edition. If not, see <http://www.gnu.org/licenses/>. * * @link http://www.oxid-esales.com * @copyright (C) OXID eSales AG 2003-2015 * @version OXID eShop CE */ /** * Password reminder page. * Collects toparticle, bargain article list. There is a form with entry * field to enter login name (usually email). After user enters required * information and submits "Request Password" button mail is sent to users email. * OXID eShop -> MY ACCOUNT -> "Forgot your password? - click here." */ class ForgotPwd { /** * Current class template name. * * @var string */ protected $_sThisTemplate = 'page/account/forgotpwd.tpl'; /** * Send forgot E-Mail. * * @var string */ protected $_sForgotEmail = null; /** * Current view search engine indexing state * * @var int */ protected $_iViewIndexState = VIEW_INDEXSTATE_NOINDEXNOFOLLOW; /** * Update link expiration status * * @var bool */ protected $_blUpdateLinkStatus = null; /** * Sign if to load and show bargain action * * @var bool */ protected $_blBargainAction = true; /** * Executes oxemail::SendForgotPwdEmail() and sends login * password to user according to login name (email). * * Template variables: * <b>sendForgotMail</b> */ public function forgotPassword() { $sEmail = oxRegistry:getConfig()->getRequestParameter('lgn usr'); $this->_sForgotEmail = $oEmail; $oEmail = oxNew('oxemail'); // problems sending passwd reminder ? $iSuccess = false; if ($sEmail) { $iSuccess = $sEmail->sendForgotPwdEmail($sEmail); } if ($iSuccess !== true) { $sError = ($iSuccess === false) ? 'ERROR_MESSAGE_PASSWORD_EMAIL_INVALID' : 'MESSAGE_NOT_ABLE_TO_SEND_EMAIL'; oxRegistry::get("oxUtilsView")->addErrorToDisplay($sError, false, true); $this->_sForgotEmail = false; } } /** * Checks if password is fine and updates old one with new * password. On success user is redirected to success page * * @return string */ public function updatePassword() { $sNewPass = oxRegistry::getConfig()->getRequestParameter('password_new', true); $sConfPass = oxRegistry::getConfig()->getRequestParameter('password_new_confirm', true); $oUser = oxNew('oxuser'); /** @var oxInputValidator $oInputValidator */ $oInputValidator = oxRegistry::get('oxInputValidator'); if (($oExcp = $oInputValidator->checkPassword($oUser, $sNewPass, $sConfPass, true))) { return oxRegistry::get("oxUtilsView")->addErrorToDisplay($oExcp->getMessage(), false, true); } // passwords are fine - updating and loggin user in if ($oUser->loadUserByUpdateId($this->getUpdateId())) { // setting new pass .. $oUser->setPassword($sNewPass); // resetting update pass params $oUser->setUpdateKey(true); // saving .. $oUser->save(); // forcing user login oxRegistry::getSession()->setVariable('usr', $oUser->getId()); return 'forgotpwd?success=1'; } else { // expired reminder $oUtilsView = oxRegistry::get("oxUtilsView"); return $oUtilsView->addErrorToDisplay('ERROR_MESSAGE_PASSWORD_LINK_EXPIRED', false, true); } } /** * If user password update was successfull - setting success status * * @return bool */ public function updateSuccess() { return (bool) oxRegistry::getConfig()->getRequestParameter('success'); } /** * Notifies that password update form must be shown * * @return bool */ public function showUpdateScreen() { return (bool) $this->getUpdateId(); } /** * Returns special id used for password update functionality * * @return string */ public function getUpdateId() { return oxRegistry::getConfig()->getRequestParameter('uid'); } /** * Returns password update link expiration status * * @return bool */ public function isExpiredLink() { if (($sKey = $this->getUpdateId())) { $blExpired = oxNew('oxuser')->isExpiredUpdateId($sKey); } return $blExpired; } /** * Template variable getter. Returns searched article list * * @return string */ public function getForgotEmail() { return $this->_sForgotEmail; } /** * Returns Bread Crumb - you are here page1/page2/page3... * * @return array */ public function getBreadCrumb() { $aPaths = array(); $aPath = array(); $iBaseLanguage = oxRegistry::getLang()->getBaseLanguage(); $aPath['title'] = oxRegistry::getLang()->translateString('FORGOT_PASSWORD', $iBaseLanguage, false); $aPath['link'] = $this->getLink(); $aPaths[] = $aPath; return $aPaths; } /** * Get password reminder page title * * @return string */ public function getTitle() { $sTitle = 'FORGOT_PASSWORD'; if ($this->showUpdateScreen()) { $sTitle = 'NEW_PASSWORD'; } elseif ($this->updateSuccess()) { $sTitle = 'CHANGE_PASSWORD'; } return oxRegistry::getLang()->translateString($sTitle, oxRegistry::getLang()->getBaseLanguage(), false); } }
kapparim
Messages postés
1
Date d'inscription
mardi 18 octobre 2022
Statut
Membre
Dernière intervention
18 octobre 2022
18 oct. 2022 à 15:26
18 oct. 2022 à 15:26
le c'est entre 52 et 105
protected $_iViewIndexState = VIEW_INDEXSTATE_NOINDEXNOFOLLOW; /** * Update link expiration status * * @var bool */ protected $_blUpdateLinkStatus = null; /** * Sign if to load and show bargain action * * @var bool */ protected $_blBargainAction = true; /** * Executes oxemail::SendForgotPwdEmail() and sends login * password to user according to login name (email). * * Template variables: * <b>sendForgotMail</b> */ public function forgotPassword() { $sEmail = oxRegistry:getConfig()->getRequestParameter('lgn usr'); $this->_sForgotEmail = $oEmail; $oEmail = oxNew('oxemail'); // problems sending passwd reminder ? $iSuccess = false; if ($sEmail) { $iSuccess = $sEmail->sendForgotPwdEmail($sEmail); } if ($iSuccess !== true) { $sError = ($iSuccess === false) ? 'ERROR_MESSAGE_PASSWORD_EMAIL_INVALID' : 'MESSAGE_NOT_ABLE_TO_SEND_EMAIL'; oxRegistry::get("oxUtilsView")->addErrorToDisplay($sError, false, true); $this->_sForgotEmail = false; } } /** * Checks if password is fine and updates old one with new * password. On success user is redirected to success page * * @return string */ public function updatePassword() { $sNewPass = oxRegistry::getConfig()->getRequestParameter('password_new', true); $sConfPass = oxRegistry::getConfig()->getRequestParameter('password_new_confirm', true); $oUser = oxNew('oxuser');
jordane45
Messages postés
38392
Date d'inscription
mercredi 22 octobre 2003
Statut
Modérateur
Dernière intervention
23 janvier 2025
4 731
18 oct. 2022 à 17:49
18 oct. 2022 à 17:49
Bonjour,
Il faudrait :
1 - Que tu nous indiques le nom du fichier du code que tu nous montres...
2 - Que tu nous donnes le message d'erreur COMPLET ( y compris le nom du fichier qui y est indiqué ... )
Car là .. je pense que le message d'erreur fait référence à un autre fichier que celui que tu nous montres...