Hi salman,
- From the SSH terminal, run the entry point manually and check the Errors. If there is a syntax or a runtime error, it will appear here.
- If the process is hanging, it means that there is something blocked in the bootstrap (or CAKEPHP dispatcher).
- if you rolled the bootstrap back, integration can still be referred to elsewhere, or:
- Cashed configurations/Auth tokens can be invalid.
- The app may still try to reach those services during the load.
- Try to check:
Any key related to environmental variables- azure_*, blob_*, keyvault_*, etc.
Network Settings - If your app is in service VNET, make sure that DNS resolution and firewall rules are not blocking Azure service traffic. Try to remove those services from your environment temporarily to separate this issue. - This is a great way of troubleshooting without affecting your main slot: Go to app service → add the deployment slot → slot.
- Clone your current configuration and deploy a barebones version of your app (no Azure service, no heavy boot logic). See what the new slot works, If it loads fine, the problem is in the current environment or code of your app.
- Make sure logging is enabled so you can catch PHP errors:
App Service → Logs- Application Logging (Filesystem): On
- Web Server Logging: On
- Detailed Error Messages: On
Check output via Log Stream or directly from /home/LogFiles
.
if you have any further concerns or queries, please feel free to reach out to us.