Resolution
Please perform these steps after install of Maximizer web component on the server.
- In IIS Manager go to Application pools, select DefaultAppPool, and open Advanced Settings.
- Set Enable 32-bit Applications Property to True
- Set Managed pipeline mode property to Classic
Save the settings.
- In C:\Windows\System32\inetsrv\config open applicationHost.config file (open Notepad as admin user on the machine and browse to the file).
Before editing save copy of the file just in case.
In <globalModules> section change:
<add name="PasswordExpiryModule" image="C:\Windows\system32\RpcProxy\RpcProxy.dll" />
to
<add name="PasswordExpiryModule" image="C:\Windows\system32\RpcProxy\RpcProxy.dll" preCondition="integratedMode,runtimeVersionv2.0,bitness64" />
Save the file.
- Open command line (run as admin) and execute:
%windir%\system32\inetsrv\appcmd.exe set config -section:system.webServer/httpCompression /-[name='xpress']
- Restart the IIS.
|