Settings Wont Save In /Admin
Search Opening IIS. Selecting the /assets project. Going to Handler Mappings. Selecting and removing the WebDavModule handler.
Settings Wont Save In /Admin
If you are getting a red error message when you try to save setting changes to registration>settings in /admin, then do the following steps:
- Run the api migrations and try again
- Confirm the API user/password is correct in folders: api/admin/cs-registration
- Confirm the private key is correct in folders: api/admin/cs-registration
- Confirm IIS /admin is using the same app pool as a track that is working (should be DefaultAppPool - v2.0 - Classic - Network service)
- Add modify to the 'User' role for the admin folder in c:\clubspeedapps
- Restart IIS & Try again.
If that fails, go to IIS>click on the server and verify you see a module called WebDave. If you do, follow the following Brian steps, restart IIS and try again.
***THIS IS A LEVEL 2 FIX ONLY!!
- Go to c:\clubspeedapps\api\web.
config - Make the following additions as appropriate, save, and restart IIS:
- You might have add the module sections, just make sure to keep it the save level as handlers.
- Add the <remove name=...> to the bottom of the section right above the </...>
<system.webServer> <modules> <remove name="WebDAVModule" /> </modules> <handlers> <remove name="WebDAV" /> </handlers> </system.webServer> Follow: similar steps for /assets to allow images to post:
- Opening IIS.
- Selecting the /assets project.
- Going to Handler Mappings.
- Selecting and removing the WebDavModule handler.