• The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

Resolved php_handler displayname ... by OS vendor

moswak

Regular Pleskian
Plesk 12.5.30
Centos 6.8

I have updated the OS PHP Version from 5.4.35-1.el6.remi to 5.5.38-4.el6.remi on a testserver

/usr/local/psa/bin/php_handler --list
shows me
fastcgi 5.4.35 by OS vendor 5.5.38 5.5 fastcgi /usr/bin/php-cgi /usr/bin/php /etc/php.ini false enabled

how can i update the displayname 5.4.35 by OS vendor ?

Can there be problems with plesk when I update the OS PHP version to 5.5 or 5.6 ?
 
Hi moswak,

pls. use something like:
Code:
plesk bin php_handler --update \
 -id "cgi" \
 -displayname "5.5.38 by OS vendor ( default )"
 
plesk bin php_handler --update \
 -id "fastcgi" \
 -displayname "5.5.38 by OS vendor ( default )"

plesk bin php_handler --update \
 -id "fpm" \
 -displayname "5.5.38 by OS vendor ( default )"

plesk bin php_handler --update \
 -id "module" \
 -displayname "5.5.38 by OS vendor ( default )"

Have as well a closer look at the Plesk documentation:

php_handler: Custom PHP Handlers ( Plesk 12.5 - online documentation - Reference for Command-Line Utilities, Plesk for Linux )

Consider as well to use the command "plesk bin php_handler --help" over the command line, to inform yourself about possible options, when using a command. Almost all linux packages will list possible command options, when you use the "--help" - string. ;)
 
Hi,

for me worked

Code:
plesk bin php_handler --update -id "cgi" -displayname "5.5.38 by OS vendor ( default )"
plesk bin php_handler --update -id "fastcgi" -displayname "5.5.38 by OS vendor ( default )"
plesk bin php_handler --update -id "fpm" -displayname "5.5.38 by OS vendor ( default )"
plesk bin php_handler --update -id "module" -displayname "5.5.38 by OS vendor ( default )"

I know the doku already but there stands at Commands --update "Only custom handlers can be updated."
I did not know exactly whether it was possible.


My second question was:
Can there be problems with plesk when I update the OS PHP version to 5.5 or 5.6 ?
 
Hi moswak,

for me worked
Well, MY suggestions ( with the paragraph - settings, defined with " \" and the additional options defined in a NEW line ) are used to point out possible differences at the different, suggested commands. You certainly may skip the part " \" and the new line, when you perform the commands. ;)


Can there be problems with plesk when I update the OS PHP version to 5.5 or 5.6 ?
No, due to the fact:

=> https://docs.plesk.com/release-notes/12.5/software-requirements/#s4-2

Supported Third-Party Components
Linux

Web scripting:

  • mod_perl
  • mod_python
  • PHP 5.1 and later**
  • Apache Tomcat 5.0, 5.5, 6,7 - depending on the Linux distribution
 
Back
Top