BackOffice 404 error when trying to change Accelerator Settings

I’m trying to change the variant grouping in Settings -> Accelerator -> Settings. But when I press the Save button I get a 404 error.

3

For some reason it works fine on our QA server, but not in the production and dev servers.
There’s no error in the log.

How can fix this so I can change the setting?
Alternatively, where in the database can I update this value myself?

Litium version: 6.1.1

You are probably missing the following in web.config

    <handlers>
      <remove name="ExtensionlessUrlHandler-Integrated-4.0"/>
      <remove name="OPTIONSVerbHandler"/>
      <remove name="TRACEVerbHandler"/>
      <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0"/>
    </handlers>

It seems to have fixed the problem on dev, thanks!

Anyway, I’ll mark as solved as fast as we verify it works on Production :slight_smile:

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.