• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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