Hi @Megha Thimmappa
It looks like you're trying to upgrade PHP for your WordPress site on Azure App Service Linux, but you're running into some limitations in the portal.
If you're on PHP 8.3.20 and want a newer version, use the Azure CLI to see all supported PHP versions:
az webapp list-runtimes --os linux | grep PHP
If a newer version is available, you can upgrade with the Azure CLI. For example, to upgrade to PHP 8.4, use:
az webapp config set --resource-group <resource-group-name> --name <app-name> --linux-fx-version "PHP|8.4"
Replace <resource-group-name> and <app-name> with your actual values.
If you don't see the latest version in the portal or CLI, you might need to create a custom Docker container with your preferred PHP version. Check out how to do this here.
f the version you want isn't available, consider setting up a staging slot to test a custom configuration without impacting your live site.
Keep an eye on Azure's announcements for new PHP version releases, as they update their supported runtimes regularly.
Let me know if you have any further assistances needed