• 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

Resolved Intl PHP Extension for PHP 7.2

epole73

New Pleskian
Hallo,

am tried everything, but i can not solve my issue. I can not install a Webshop, because of missing the "Intl PHP Extension".

Can someone help me with that? Is it installed autoamtically in Plesk or do i have to do this?

Kind regards,
Jake
 
Which OS are you using? Which PHP, Plesk's PHP 7.2 or..?

Does your application have an online installer or are you installing it from the command line? If the former is the case, has the correct PHP handler been selected for the domain in Plesk? If the latter is the case, are you using the correct PHP binary?

I just ran this on CentOS 7, using PHP 7.2 provided by Plesk (note the path to the php binary):
Code:
[user@server ~]# /opt/plesk/php/7.2/bin/php -m |egrep intl
intl
[user@server ~]# cat /opt/plesk/php/7.2/etc/php.d/intl.ini
; Enable intl extension module
extension=intl.so

And this is on the same CentOS 7 server, using PHP 5.4.16-46.el7 provided by the OS:
Code:
[user@server ~]# php -m |egrep intl
<empty output>
 
Back
Top