Resolved: Invalid key message during password reset
Hello everyone,
We have a jobroller running down
http://jebjoob.com and have some users reporting problems during resetting their password, here are the symptoms
Upon clicking the reset password link that the user received by email, an error message is displayed stating that key is invalid. After investigating we have observed the users reporting the problem have spaces in their username "anis marrouchi". looking at the code this problem must be general to all appthemes themes. The solution for us was as follow:
In the file named
located at
wp-content/themes/jobroller/framework/includes
PHP Code:
/*
Author: Anis Marrouchi
Email: contact@twittstrap.com
Bug: error message invalid key
Date modification: 22/10/2013
Original code: $args = array( 'action' => $_GET['action'], 'key' => $_GET['key'], 'login' => $_GET['login'] ); //Line 424
*/
$args = array( 'action' => $_GET['action'], 'key' => $_GET['key'], 'login' => $_GET['login']));
/* End modification */
Hoping that this would help someone out there, please be adviced that this a file part of the framework, any updates of your appthemes might overrided the changes. Do your backups, test before going live.
We are twittstrap.com