FIX the Azure deploy

Thibaut Fabrice 0 Reputation points
2026-04-18T09:45:04.18+00:00

Sales Report button page not load

Manage Products page not load

https://pos4-epcggvc8g7hgghd3.southafricanorth-01.azurewebsites.net/

check it.

User's image

Any help,

Awaiting your reply,

Fabrice

Azure App Service
Azure App Service

Azure App Service is a service used to create and deploy scalable, mission-critical web apps.


1 answer

Sort by: Oldest
  1. AI answer

    2026-04-18T09:45:24.96+00:00

    The provided information doesn’t include details about this specific web app or its deployment, so only general Azure guidance can be given.

    To troubleshoot the Sales Reports and Manage Products pages not loading in an Azure App Service deployment:

    1. Verify the app is running
      • In Azure portal, open the App Service.
      • Confirm the Status is Running and there are no recent Failed events in Activity log.
    2. Check deployment behavior
      • If the app is using Run-From-Package (for example, an WEBSITE_RUN_FROM_PACKAGE application setting), deployments may be applied asynchronously and new files might not appear immediately.
      • In the App Service:
        • Go to Configuration → Application settings.
        • Look for a setting like WEBSITE_RUN_FROM_PACKAGE.
        • If present and the app is a simple web app where immediate updates are required, remove this setting or set it to 0, then Save and allow the app to restart.
      • This ensures new deployments are written directly to the file system so updated pages become available immediately after deployment.
    3. Confirm files and routes exist
      • Use Kudu/Advanced Tools for the App Service and browse the site/wwwroot folder.
      • Verify that the files or routes for Sales Reports and Manage Products pages are present after deployment.
      • If they are missing, the deployment package or pipeline is incomplete; redeploy with all required files.
    4. Inspect application logs
      • In the App Service, enable Application logging and Detailed error messages if not already enabled.
      • Reproduce the issue by clicking Sales Reports and Manage Products, then review logs for routing errors, missing files, or unhandled exceptions.
    5. Test another region or slot (if available)
      • If the issue appears only in this deployment, try deploying the same code to another region or a deployment slot to rule out environment-specific issues.
    6. If the portal or deployment experience itself is failing
      • Use Azure CLI or REST to redeploy or inspect resources if any portal blade fails to load.
      • If deployment or quota issues are suspected and can’t be resolved via the portal, open a support request from the Azure portal Help + support blade.

    If, after these steps, the pages still don’t load and logs show no clear cause, capture the exact error messages or HTTP status codes from the browser’s developer tools and use them to drive further debugging or to include in a support request.


    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

    1 person found this answer helpful.

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.