• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion
  • Inviting everyone to the UX test of a new security feature in the WP Toolkit
    For WordPress site owners, threats posed by hackers are ever-present. Because of this, we are developing a new security feature for the WP Toolkit. If the topic of WordPress website security is relevant to you, we would be grateful if you could share your experience and help us test the usability of this feature. We invite you to join us for a 1-hour online session via Google Meet. Select a convenient meeting time with our friendly UX staff here.

Resolved How to install extension=intl.so?

chrisjudd

New Pleskian
Been trying to figure out how to do this properly and I just can't seem to figure it out.

Anything would be appreciated!
 
This PHP extension is already installed by default for all Plesk PHP versions:

# cd /opt/

# find . -name intl.so
./plesk/php/5.4/lib64/php/modules/intl.so
./plesk/php/5.5/lib64/php/modules/intl.so
./plesk/php/7.1/lib64/php/modules/intl.so
./plesk/php/7.0/lib64/php/modules/intl.so
./plesk/php/5.6/lib64/php/modules/intl.so
./plesk/php/5.3/lib64/php/modules/intl.so
./plesk/php/5.2/lib64/php/modules/intl.so

# grep -R intl.so *
plesk/php/5.4/etc/php.d/intl.ini:extension=intl.so
plesk/php/5.5/etc/php.d/intl.ini:extension=intl.so
plesk/php/7.1/etc/php.d/intl.ini:extension=intl.so
plesk/php/7.0/etc/php.d/intl.ini:extension=intl.so
plesk/php/5.6/etc/php.d/intl.ini:extension=intl.so
plesk/php/5.3/etc/php.d/intl.ini:extension=intl.so
plesk/php/5.2/etc/php.d/intl.ini:extension=intl.so

For PHP5.6, for example, this module is loaded:

# /opt/plesk/php/5.6/bin/php -m | grep intl
intl
 
Back
Top