Login     Sign up
Category: Installation
Mark H Bushaw (@mbushaw)
161 months ago
1332 Views

On the paid for download, the Forgot Password doesn't work.<br /><br />
It does send an email with a link but when you click on the link you get a 'not valid code' error.

1 people followed this question
1

Here is a fix for you.

  1. open you "includes/libs/member.module.php" with a text editor.
  2. find this line:
    Codeif (!eregi("/^[0-9a-z]+/i",$code)) die('not a valid code');

  3. change the line to:
    Codeif (!preg_match("/^[0-9a-z]+/i",$code)) die('not a valid code');
Mark S. @markiemark67
161 months ago