How to speed up a Azure Wordpress Site?

Steve Haemelinck 1 Reputation point
2022-10-28T07:00:57.607+00:00

Dear
Just started with Azure and using the platform to develop client based cms portals based on Wordpress.
All runs fine but i have no clue on how to increase the speed of the site? loading & respponse times

Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
8,930 questions
{count} votes

1 answer

Sort by: Most helpful
  1. ajkuma 28,036 Reputation points Microsoft Employee Moderator
    2022-10-31T09:29:09.707+00:00

    @Steve Haemelinck , Apologies for my late response from over the weekend.

    Since you have posted the question on azure-webapps tag, I presume you’re leveraging Azure App Service WebApp.

    As Lextm mentioned. as a quick step to remedy the performance issue, try these:

    • Scale-up your App Service Plan to an higher tier and check
    • By default, wp-cron.php is executed on every page load, which on high traffic sites this can cause performance issues.
    • You could enable Application Insights, see doc, to determine your latency is occurring.

    In general, there are multiple steps you could take to improve page load/response times, kindly check out these, and apply depending on your scenario.

    With below best practices or at least some of these, you will have a WordPress site running at better speeds.

    1.Reducing HTTP requests.
    2.Optimizing the database
    3. Turn-off off Pingbacks and Trackbacks if you don't use it
    4. Caching
    5. Diagnose if any plugin is slowing down your site
    6. Diagnose if your theme is slowing down your site
    7. Compress Images
    8. Specify Image dimension
    9.WebApp and database in the same region
    10.Use Azure CDN

    For more details on the above points, please check the links below:

    WordPress Best Practices for Performance
    How to speed up your WordPress site on Azure App Service

    --
    To benefit the community find the right answers, please do mark the post which was helpful by clicking on Accept Answer’ & ‘Up-Vote’.

    1 person found this answer helpful.
    0 comments No comments

Your answer

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