I got the bottle web app up and running, based on a prior VS ground-work. See here: Azure, Publish Bottle Web App using Visual Studios
Now I'm attempting to apply some bottle code. After attempting this the first time the Web App wouldn't update the requirements.txt due to permission. To get around this I simply deleted the resources and had VS create the new sources again.
Now I'm getting the error:
HTTP Error 500.0 - Internal Server Error scriptProcessor could not be found in application configuration
Detailed Error Information: Module FastCgiModule Notification
ExecuteRequestHandler Handler PythonHandler Error Code
0x80070585Requested URL https://webappsite:80/ Physical Path
D:\home\site\wwwroot
Initial research shows this is common for PHP and handlers. However, my web.config file is fine with links to:
add name="PythonHandler" path="" verb="" modules="FastCgiModule" scriptProcessor="D:\home\python364x64\python.exe|D:\home\python364x64\wfastcgi.py" resourceType="Unspecified" requireAccess="Script"
Anyone deal with this error before?
User contributions licensed under CC BY-SA 3.0