Page 1 of 1

recover password

Posted: Mon Oct 20, 2008 7:25 pm
by alejandro
Hello, how do you do...

I have this error when clicking on recover password link:

Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /home/wwwsiep/public_html/tmp/templates_c/FrontEndUsers^%%5E^5ED^5EDE5C3C%%module_db_tpl%3AFrontEndUsers%3Bfeusers_forgotpasswordform.php on line 8

any help will be appreciated
regards

Re: recover password

Posted: Tue Nov 25, 2008 12:39 am
by huam
I've the same errorĀ  >:(.

Re: recover password

Posted: Tue Nov 25, 2008 10:36 am
by Nick Smart
Have a look at the "Lost Password Template" in the Front End Users module. You'll probably find lines like this:

Code: Select all

{if $message != \'\'}
i.e. with "\"s before each quote. Try remove the "\"\ so they look like this:

Code: Select all

{if $message != ''}
Nick

Re: recover password

Posted: Thu Dec 04, 2008 2:07 am
by lemonaid
That fixed it for me.

Thank you Nick ;D