IIS 8 in Windows server 2012 R2 to run classic asp and web.config -
i have old application developed using classic asp, running fine under windows server 2008 , iis 7.0. upgrade windows server 2012 r2, since application not running fine:
when set detailed errors true iis generate web.config file:
<?xml version="1.0" encoding="utf-8"?> <configuration> <system.webserver> <httperrors errormode="detailed" /> </system.webserver> </configuration>
after "500 - internal server error" occurred in pages, if delete web.config works fine.
i need enable detailed errors find out wrong pages, errors occurred after moving new server.
any idea why happening!!? , should enable detailed errors?
thanks in advance.
i believe web.config part of asp.net, not compatible asp. it's running 32-bit version of windows 2008, whereas windows 2012 r2 64-bit.
i recommend make separate app pool web site, configure (right-click , select "advanced settings...") setting .net clr version "no managed code", , set enable 32-bit applications true.
Comments
Post a Comment