Otherwise it's always a good idea to check the /app_data/logfile to see if it reveals some information about the issue. Besides it's also a good idea to check if you have the proper permissions as you mention yourself. But it could be a range of issues depending on a lot of stuff.
Problem updating a template on the production server
Good morning,
When making an edit to a template (master page) on our production server (Win Server 2003, IIS 6), we receive a 404 error on http://[site]/umbraco/RestServices/SaveFile/SaveTemplate.
Am I missing some permission setting or something?
Hi Ken
Did you manage to get this solved?
Otherwise it's always a good idea to check the /app_data/logfile to see if it reveals some information about the issue. Besides it's also a good idea to check if you have the proper permissions as you mention yourself. But it could be a range of issues depending on a lot of stuff.
What version of Umbraco are you using?
Cheers, Jan
Greetings Jan,
Actually, I just got it solved.
Per http://stackoverflow.com/questions/2820484/http-hanlder-must-be-reset-with-each-deployment-how-can-i-add-this-functionalit, I was missing a Wildcard mapping in my application. I added this to the web.config:
<system.webServer>
<handlers>
<addname="Wildcard"path="*"verb="*"modules="IsapiModule"scriptProcessor="C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll"resourceType="Unspecified"requireAccess="None"preCondition="classicMode,runtimeVersionv4.0,bitness64"/>
</handlers>
</system.webServer>
Once I added that, everything started working just fine.
For the record, we're using Umbraco v6.1.6 (Assembly version: 1.0.5021.24867) on a 32-bit, Windows 2003 server running IIS6.
Thanks,
Ken
Hi Ken
That's good to hear and thanky for sharing the solution, so others can benefit as well :)
Happy umbracoing!
/Jan
Thank you very much for showing me the way....
Just wanted to add that this solution works for IIS 7 and 8 (assuming you are running Framework 4).
Here you can find the procedure for IIS 6 and the web.config entry if you are running an webapplication in Framework 2 and have the same issue:
https://support.appzone.com/kb/a194/setting-aspnet_isapi_dll-for-wildcard-applications.aspx
Regards.
is working on a reply...