• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

Question Query on Hiding PHP-FPM Services from Service Management in Plesk

Thomas Oryon

Regular Pleskian
Server operating system version
Redhat linux 9
Plesk version and microupdate number
18.0.76
Hello Plesk Support Team,

We would like to check whether it is possible to hide the PHP-FPM services from the Service Management page in Plesk.

In our environment, we are not using PHP-FPM. We are using LiteSpeed with FastCGI only. The PHP-FPM handlers have already been disabled under the PHP settings, so they are not in use.

However, under Tools & Settings > Services Management, the PHP-FPM versions are still listed and shown as Not configured, as per the attached screenshot.

Could you please confirm whether these PHP-FPM service entries can be hidden or removed from the Service Management page when they are not being used?

Awaiting your reply.
 

Attachments

  • handlers.png
    handlers.png
    54.6 KB · Views: 6
Hi!

There is no "official" way of hiding the buttons in this menu, but there is one alternative - to hide them from CSS, effectively not displaying the elements on the screen. Please refer to this KB article - https://support.plesk.com/hc/en-us/articles/14520982547095
You'll need to find the elements that you want to hide and then use the extension from the article to make the changes permanent (so Plesk updates will not erase them). I would advise using AI to identify the required HTML elements if you are not familiar with the topic.

The CSS selectors will be smth like:
.admin-services-list__title b:contains("PHP-FPM"),
tr:has(.admin-services-list__title b[text*="PHP-FPM"]) {
display: none !important;
}
 
Hello Yaroslav,

Thanks, I have checked the document but it shows to hide the PHP settings under the domain section but my goal is to hide from the Tools & Settings > Service as attached in the before thread. If I done the steps using the URL https://support.plesk.com/hc/en-us/articles/14520982547095 it may hide the PHP settings under domain and the user's unable to change PHP versions.

Please confirm that my understanding was correct.

Awaiting your reply.
 

Attachments

  • 1774618361750.png
    1774618361750.png
    11.1 KB · Views: 3
The Services Management tool lists the installed PHP versions. There's no way to hide them. What you can do is remove the unnecessary PHP versions from Tools & Settings > Updates > Web hosting > PHP interpreter versions.
 
Back
Top