Page 1 of 1

ERROR 404 for admin forget password form

Posted: Tue Apr 23, 2013 3:17 am
by 22dec1960
When I submit forget password form in broadleaf admin, I got the following result.

HTTP ERROR 404

Problem accessing /admin/blcadmin/blcadmin/resetPassword. Reason:

Not Found

Powered by Jetty://


What may be wrong?

Re: ERROR 404 for admin forget password form

Posted: Tue Apr 23, 2013 1:00 pm
by phillipuniverse
What version of Broadleaf?

Re: ERROR 404 for admin forget password form

Posted: Tue Apr 23, 2013 9:17 pm
by 22dec1960
It is 2.0.2-GA.

Re: ERROR 404 for admin forget password form

Posted: Thu Apr 25, 2013 4:18 am
by 22dec1960
Hi,

I also got same issue on forgotUsername form submition. I changed

Code: Select all

<script language="javascript">
          function setSubmitUrl(form)
          {
            var hash = encodeURI(self.document.location.hash.substring(1));
            form.action = "blcadmin/forgotUsername#" + hash;
            return true;
          }
      </script>


to

Code: Select all

<script language="javascript">
          function setSubmitUrl(form)
          {
            var hash = encodeURI(self.document.location.hash.substring(1));
            form.action = "/admin/blcadmin/forgotUsername#" + hash;
            return true;
          }
      </script>


in forgotUsername.jsp.

Form submission is ok but I got the page like the following and I don't know the email address on which file. Can anybody point it out?

on-file.jpg
on-file.jpg (15.3 KiB) Viewed 7900 times


Thanks,
22dec1960