You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found an issue related to running the website in a subfolder, where configuration in config/FormEditor.config is not picked up. I think I have traced it to line 27 in configuration.cs:
I think the solution is to add a tilde to the path so that HostingEnvironment.MapPath(@"/config/formEditor.config") becomes HostingEnvironment.MapPath(@"~/config/formEditor.config")
Thanks
The text was updated successfully, but these errors were encountered:
Hello,
I found an issue related to running the website in a subfolder, where configuration in config/FormEditor.config is not picked up. I think I have traced it to line 27 in configuration.cs:
FormEditor/Source/Solution/FormEditor/Configuration.cs
Line 27 in 036d93a
I think the solution is to add a tilde to the path so that
HostingEnvironment.MapPath(@"/config/formEditor.config")
becomesHostingEnvironment.MapPath(@"~/config/formEditor.config")
Thanks
The text was updated successfully, but these errors were encountered: