AspNetCoreModuleV2 error

Discussion in 'General troubleshooting' started by Javier Moreno, Dec 25, 2019.

  1. I'm receiving this error message in my NET CORE 2 web site.

    HTTP Error 500.21 - Internal Server Error

    Handler "aspNetCore" has a bad module "AspNetCoreModuleV2" in its module list


    It looks related to the red line in web.config

    <configuration>
    <location path="." inheritInChildApplications="false">
    <system.webServer>
    <handlers>
    <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
    </handlers>
    <aspNetCore processPath=".\SymTraining.exe" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" hostingModel="InProcess" />
    </system.webServer>
    </location>
    </configuration>
     
  2. Martin Ortega

    Martin Ortega Everleap staff

    There could be a number of reasons for this issue. Please make sure you're using a self-contained deployment.

    If you are then please enable logging within the web.config file. Change stdoutLogEnable to True.

    Then go ahead and create the logs folder within the same directory of the asp.net core site. You can do this using a FTP client.

    You can use an FTP client like FileZilla. FileZilla can be downloaded here: https://filezilla-project.org/

    To learn how to connect to your site using FileZilla please read our knowledge base article here:
    https://support.everleap.com/kb/a1263/how-to-set-up-filezilla-to-connect-to-your-everleap-site.aspx

    Or contact our support department via our support portal. We'll be glad to assist you with your issue.
     

Share This Page