PHP/Drupal Web Application crashes on Azure Web Apps

-2

We have hosted application on azure web apps and its continuously crashing due to some issue (might be configuration) - Below is description. We detected Application crashes during this timeframe.

Description: We detected crashes in your application .

Next Steps: Please check the event logs table below to see if there are any uncaught exceptions might be causing this. Also, you can check out useful Links section to explore some of the other options that can help diagnose crashes in your application.

Exception Code: 142 crashes due to (0xE0434352 - CLR Exception)

php
fastcgi
azure-web-app-service
asked on Stack Overflow May 17, 2019 by Ravindra Kawale • edited May 18, 2019 by H. Pauwelyn

1 Answer

0

This issues is usually because of the worker runtime setting

Mismatched worker runtime setting - (0xE0434352 - CLR Exception) function internal server error

I has this issue once. As it turned out was FUNCTIONS_WORKER_RUNTIME in application settings set to dotnet, although I am quite sure that I opted for javascript. Correcting the value to "node" solved the problem.

Please ensure in your web app , you runtime is correctly set.

Please refer this link for configuring php app in azure.

Hope it helps.

answered on Stack Overflow May 20, 2019 by Mohit Verma

User contributions licensed under CC BY-SA 3.0