Software (include version): Epicor IDC
Use Case: User get the following error when trying to log in.
Customer: This came up when end user tried to log in for TMC /Ametek
Prerequisites: N/A
Instructions:
To fix, you need to disable the requireSSL in the web.config
<system.web>
<sessionState mode="InProc" timeout="10000"></sessionState>
<authentication mode="None" />
<compilation debug="true" targetFramework="4.5.2" />
<!-- Note: Execution timeout is in seconds. Default value is 110. -->
<httpRuntime maxRequestLength="1048576" targetFramework="4.5.2" executionTimeout="3600" />
<customErrors mode="On" defaultRedirect="~/Error/Error" />
<globalization culture="" uiCulture="" />
<httpCookies requireSSL="false" />
</system.web>Don’t forget to run IISReset from Admin CMD prompt and restart the browser, refreshing won’t work.
Helpful Links: N/A