Menu
  • HOME
  • TAGS

Can't add an add-on to my alfresco server 4.2.f

alfresco,alfresco-share,reset-password

The plugin which you are using is not designed for the latest version or version which you are using.There are some files which are changed in alfresco version 4.2f.I have designed new solution which is compatible with your version.There may be some designing issue, but you can change it in...

Meteor reset password does not send email to user for password reset

meteor,nitrousio,password-recovery,reset-password,telescope

You need to set up an SMTP service (Meteor's own hosting uses Mailgun, but others are available), and set the environment variable MAIL_URL to match the details of your service, as documented here. Ideally do this in the Nitrious.io environment before Meteor starts, but you can do it on startup...

django view for password_reset_confirm.html

python,django,reset-password

The action attribute should be empty so that the form is sent to the current URL. This is the common pattern for form handling in Django: a URL displays a form on a GET request and processes it on a POST request....

web2py custom reset password

python,web2py,reset-password

the above code is working perfectly

Should I make that re-set password link expire at a certain period of time? [closed]

php,laravel,laravel-4,laravel-5,reset-password

If you are using laravel 5, this option comes as a boiler plate. all you have to do is migrate the users and password_reset tables. The token is automaticaly expired in 60 minutes.

Forgotten password reset page: should the user need to enter a username/email as well?

security,user-management,forgot-password,reset-password

I don't see any value in doing this. Just make your key secure. Perhaps a 128-bit (that's 22 base 64 encoded characters) secure random. That seems large enough. Also add a timeout to the token life span. 24 hours seems a fine compromise between security and inconvenience. I like the...