How do I fix This issu, Intl extension is not loaded

alfrederty

Member
XNullUser
Joined
Feb 26, 2022
Messages
44
Reaction score
0
Points
6
NullCash
2
1645943465130.png

Intl extension is not loaded, Ive just installed prestashop on my vps server
 

sk4all

Active member
XNullUser
Joined
Jul 27, 2021
Messages
120
Reaction score
82
Points
28
NullCash
1,113
You can do it in php.ini where you can specify and comment below extension

;extension=intl or ;extension=php_intl.dll [ remove ";" semicolon and all done ] or simply add below all extensions ]
extension=intl or extension=php_intl.dll

if you are using any php development environment like XAMPP or WAMP on windows machine check the settings and enable php extension for apache server.

if you are using ubuntu you can simply type the command below and restart apache or whatever server you have

sudo apt-get update
sudo apt-get install php7.0-intl [ if your php 7 ]
or
sudo apt-get install php5.6-intl [ in case still you are using php 5.6 ]

restart the server once done.

Ref :

hope it helps,
Cheers !!!!
Post automatically merged:

When you ask any question please make sure you specify your php version and development environment so you could find solution exactly what you want.

Cheer !!
 
Last edited:

zyhivan

Member
XNullUser
Joined
Aug 6, 2021
Messages
571
Reaction score
0
Points
16
NullCash
2,521
Awsome ! very good, thank you, thank you, Thank you so much! Thank you so much!.
 
Top