I have been trying to deploy django application using IIS but after following all the steps i am getting below error
<handler> scriptProcessor could not be found in <fastCGI> application configuration
I understand this error is due to incorrect path of scriptprocessor value, but value mentioned is correct. Please see below screenshot
Screenshot of wfastcgi-enable
Applied configuration changes to section "system.webServer/fastCgi" for "MACHINE/WEBROOT/APPHOST" at configuration commit path "MACHINE/WEBROOT/APPHOST"
""c:\program files\python39\python.exe"|"c:\program files\python39\lib\site-packages\wfastcgi.py"" can now be used as a FastCGI script processor
Below is the value set in web.config file in wwwroot folder
<handlers>
<add name="Python FastCGI"
path="*"
verb="*"
modules="FastCgiModule"
scriptProcessor="c:\program files\python39\python.exe|c:\program files\python39\lib\site-packages\wfastcgi.py"
resourceType="Unspecified"
requireAccess="Script" />
</handlers>
Can somebody help why i am facing this error.