• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.

11.5.30 UI buttons and PHP options missing

yetiman

New Pleskian
Upgraded to 11.5.30 (CentOS) and everything seems to have gone smoothly aside from a few issues:

1) In Service Plans, the Save button is missing when editing or adding a new service plan. I just receive two dots where a button should be. Can't save any Service Plan edits or add new Service Plans.
2) In Hosting Parameters, "Run PHP As" shows an empty dropdown without any options.
3) PHP now runs as Apache module for all domains now that were previously running under FastCGI in Plesk 11.9.

Anyone else experiencing something similar?
 
Can't reproduce issue with Button.

Try to do following with PHP handlers:
Check the PHP version with this command:

# php -v

Make sure that it does not show any error.
Check the PHP handlers in /etc/psa/php_versions.json or with this command:

# /usr/local/psa/admin/sbin/php_handlers_control --list

Make sure that the PHP version is correct.

Check the PHP handlers in the Plesk database. They should appear as below:

mysql> select section,name from ServiceNodeEnvironment where section='phphandlers';
+-------------+---------+
| section | name |
+-------------+---------+
| phphandlers | cgi |
| phphandlers | fastcgi |
| phphandlers | module |
| phphandlers | synced |
+-------------+---------+

If some handlers are missing from the database, it is necessary to refresh the Plesk Components in the Plesk Control Panel > Tools and Utilities > Server Components and press the Refresh button.
Also you can reread the PHP handlers from php_versions.json with this command:

# /usr/local/psa/admin/sbin/php_handlers_control --reread
 
Back
Top