• 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.

Question How to enable PHP extensions for a specific domain that runs a specific PHP version - instead for global PHP version x.y?

jmar83

Regular Pleskian
Hi there

I just can see how to enable them for a specific PHP version "globally" - so not just for one domain: How to Enable/Disable PHP Extensions in Plesk? - ServerCake India

I would like to enable the following extensions for my specific snappymail webmail subdomain that currently runs on PHP 8.x (if necessary [if that extensions are not available], it can also run on a lower php 7.x version)

Extensions i would ike to enable for PHP 8.x on that specific webmail subdomain:

- Gmagick
- GnuPG
- uuid
- XXTEA

(They are not mandatory for snappyMail, but i would ike to enable them)
 
Hi

You can do that by adding custom configuration to the php.ini used by the domain in Domains > example.com > PHP Settings > Additional configuration directives:

INI:
extension = some_extension.so
extension = other_extension.so
extension = other_extension_1.so
extension = other_extension_2.so

That should work for both PHP-FPM and FastCGI and should only apply to a single site.

Before applying that, you'd also need to compile these extensions using pecl (e.g. /opt/plesk/php/8.0/bin/pecl install uuid): https://support.plesk.com/hc/en-us/articles/360005875373
 
Back
Top