I would like to start using the new 7.5 backoffice password reset feature.
However, when I receive the email, the hostname in the link is incorrect.
It looks like it takes the hostname from the umbracoSettings/web.routing/umbracoApplicationUrl setting. However, because we have a loadbalanced environment, this is an internal hostname, and not publicly available. Can I set the hostname for the password reset link explicitly in another way?
We are also having the same issue with the wrong reset validation code link as our umbracoApplicationUrl is set to use mysite.local internal url. Did you manage to find the solution for this?
We have just started getting this issue since the latest update. The reset url link is pointing back at the original dev website address that we had just prior to the site going live.
I have looked everywhere I can think of, first in the web.config, and have also looked at the IIS settings for the website but cannot find anywhere that the old host name is referenced. Please could someone let me know how I can reset the actual link that gets sent out to users when they need to reset their own passwords.
I don't know if this will help or not, but what happens if you set the "domain" on your root node to the correct domain?
I don't know the impact of this in a load balanced environment either but I would imagine it should work.
Regarding a load balanced environment, things might be a bit different as the umbraco back office should, I understand it, only be available on one of the environments and not across them all. I think the load balancing of this should take care of it though, but I can't be sure.
Hi Nik, thanks for your response, in the end my colleague sorted this by hard binding the dev domain to offline site.
I can only assume the recent update changed something in the way umbraco looks for it's current host and found the legacy reference in an array return or something, that dev site went offline when the website went live 2 years ago, and no problems with this before.
Anyway all sorted for us now, thankfully!
Password reset link hostname
Hi,
I would like to start using the new 7.5 backoffice password reset feature. However, when I receive the email, the hostname in the link is incorrect. It looks like it takes the hostname from the umbracoSettings/web.routing/umbracoApplicationUrl setting. However, because we have a loadbalanced environment, this is an internal hostname, and not publicly available. Can I set the hostname for the password reset link explicitly in another way?
Thanks, Jasper.
We are also having the same issue with the wrong reset validation code link as our umbracoApplicationUrl is set to use mysite.local internal url. Did you manage to find the solution for this?
We have just started getting this issue since the latest update. The reset url link is pointing back at the original dev website address that we had just prior to the site going live. I have looked everywhere I can think of, first in the web.config, and have also looked at the IIS settings for the website but cannot find anywhere that the old host name is referenced. Please could someone let me know how I can reset the actual link that gets sent out to users when they need to reset their own passwords.
I don't know if this will help or not, but what happens if you set the "domain" on your root node to the correct domain?
I don't know the impact of this in a load balanced environment either but I would imagine it should work.
Regarding a load balanced environment, things might be a bit different as the umbraco back office should, I understand it, only be available on one of the environments and not across them all. I think the load balancing of this should take care of it though, but I can't be sure.
Hi Nik, thanks for your response, in the end my colleague sorted this by hard binding the dev domain to offline site. I can only assume the recent update changed something in the way umbraco looks for it's current host and found the legacy reference in an array return or something, that dev site went offline when the website went live 2 years ago, and no problems with this before. Anyway all sorted for us now, thankfully!
Hello,
We have the same problem. Is it possible to change the url in the mail that is send by Umbraco.
We don't have the possibility to bind the local domain.
You could override the
UmbracoApplicationUrl
with theApplicationUrlProvider
. Class ApplicationUrlHelper DocumentationExample, In our case, if the environment is live, return a url from the web config. You need to change this code for your needs.
is working on a reply...