i have created a whole website on my test server then moved it to client server. After clicking the "Forgot password" option, i got link on my email . When i click on that link it redirects me to reset password page. Now when I try to reset password it gives me an error "Your password reset link has expired". I tried with the new password it gives message that the "password is invalid" and it is still working with the old password.
password request has expired in magento ver 1.9.0.1
561 Views Asked by user2583432 At
2
There are 2 best solutions below
0
Yatin Khullar
On
Please check with your default email template name: Forgot Password I have same issue for me issue with this email template
In this template find below line
<a href="{{store url="customer/account/resetpassword/" _query_id=$customer.rp_customer_id _query_token=$customer.rp_token}}"><span>Reset Password</span></a>
and replace with below line:
<a href='{{store url="customer/account/resetpassword/" _query_id=$customer.id _query_token=$customer.rp_token}}'><span>Reset Password</span></a>
You will see issue with quotes only.
Hope this will help you.
Related Questions in MAGENTO
- Magento custom block. Can't get block's file
- About HTTP_HOST & PHP_SELF
- getSummaryQty() is not working properly magento
- Magento adding configurable product to cart programmatically
- Magento with SSL + Varnish
- Magento returns 404 page randomly
- Highlight current link on navigation bar
- Redirect in CheckOut
- Merging Magento and Dreamweaver, Xampp
- Magento add grouped product to cart as a single item
- Rewrite inline css to work on smartphone
- Insert order into magento manually
- php script to fix text in magento
- Overriding product list in magento
- How to remove unassigned images from products in magento?
Related Questions in PASSWORDS
- Do I have to randomize key in OpenSSL
- Xcode salting and hashing a password
- migrate one ldap server to another - questions
- Create a .txt with Password
- Hiding param of struts.xml values in Struts 2
- Detecting when CAPS LOCK is ON
- Save user and password Android
- Use MATLAB's webread to login to website and extract text
- authentication ruby valid_password error
- Linux acquire root permissions through a password popup
- I forgot the password to open a Word document. How can I retrieve the password?
- Django Rest Framework - serializer code not executing
- Transmit commands via ssh with password using expect
- Most used password in different language
- How does Maven 3 password encryption work?
Related Questions in REQUEST
- Why does PHP add "\r\n" to an empty string?
- Superagent share session / cookie info with actual browser
- Check if POST is succesfull (Android)
- Python Web Scraping title in a special div & Page 1 + 15
- Pipe not working
- post request (with body) in node.js
- How do you Request[""] with a Dynamic Variable? Request["@Variable"]?
- No schema supplied and other errors with using requests.get()
- Send rest request after async responses volley
- Download The Images By Node(request)
- Get reponse message in Node using Request library?
- Android Java Http Request Post
- Can npm request module be used in a .pipe() stream?
- { [Error: socket hang up] code: 'ECONNRESET' }
- Spring MVC request
Related Questions in EXPIRED-SESSIONS
- expire page on back button symfony2
- How to get Spring Security auto logout time, when using invalidate-session="false"?
- password request has expired in magento ver 1.9.0.1
- Asp.net MVC - How to check session expire for Ajax request
- PHP session expiring too early
- Session Expires within few 4 minutes
- How do I resolve the 419 Page Expired error created by a token mismatch arising from Chrome Password Manager and Laravel 10 app login
- How do you get CGI::Session to expire after a certain interval?
- What is the best way to periodically ask a user if they wish to remain logged-in when the user is on a web-page?
- Reset password token expiry laravel custom api
- How to set a correct session expired for my code?
- OAuth grant flow - tokens expiration
- Laravel page expired 419 only sometimes
- JWT expires too fast in .NET Core Web API
- why spring redis session 'touch' method called in 'cleanExpiredSessions' method can clean expired session
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You probably created the customer outside the traditional manner , try: