Changing scriptFolderPath does not update Scripts folder in settings
umbraco v
4.5.2 (Assembly version: 1.0.3891.20719)
I changed the scriptFolderPath in umbracoSettings.config from
<scriptFolderPath>/scripts</scriptFolderPath>
to <scriptFolderPath>/umbracoScripts</scriptFolderPath>
but when navigating to settings in the umbraco admin, the old scripts folder contents are still displayed. Is there another setting I need to update to change the script folder path?
Dissasembled the umbraco.dll for v4.5.2 and determined that I needed to update the appSettings in the web config by adding this key (which is not present by default):
Changing scriptFolderPath does not update Scripts folder in settings
umbraco v 4.5.2 (Assembly version: 1.0.3891.20719)
I changed the scriptFolderPath in umbracoSettings.config from
<scriptFolderPath>/scripts</scriptFolderPath>
to
<scriptFolderPath>/umbracoScripts</scriptFolderPath>
but when navigating to settings in the umbraco admin, the old scripts folder contents are still displayed. Is there another setting I need to update to change the script folder path?
Dissasembled the umbraco.dll for v4.5.2 and determined that I needed to update the appSettings in the web config by adding this key (which is not present by default):
<add key="umbracoScriptsPath" value="~/umbracoScripts" />
is working on a reply...