Skip to content
English
  • There are no suggestions because the search field is empty.

Settings Wont Save In /Admin

Search

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:

 

  1. Run the api migrations and try again
  2. Confirm the API user/password is correct in folders: api/admin/cs-registration
  3. Confirm the private key is correct in folders: api/admin/cs-registration
  4. Confirm IIS /admin is using the same app pool as a track that is working (should be DefaultAppPool - v2.0 - Classic - Network service)
  5. Add modify to the 'User' role for the admin folder in c:\clubspeedapps
  6. 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!!

  1. Go to c:\clubspeedapps\api\web.config
  2. 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:
  1. Opening IIS.
  2. Selecting the /assets project.
  3. Going to Handler Mappings.
  4. Selecting and removing the WebDavModule handler.
  1. Opening IIS.
  2. Selecting the /assets project.
  3. Going to Handler Mappings.
  4. Selecting and removing the WebDavModule handler.

    Related Articles