I´m trying to install Prestashop in Xampp but appears that error. i tryed to uncomment the line in php.ini of "extension=php_intl.dll" And then restart Xampp but the error is appearing.
I´m using php 7.2 and the version of Prestashop is 1.7.6.
Any idea?
2
I solved the problem.
After try a lot of differents solutions i installed again Mamp and now its works.
It is saying it could not load the intl extension. Make sure your server loads the intl extension.
WRONG:
;extension=php_intl.dll
CORRECT
extension=php_intl.dll
The semicolon (;) needs to be removed. Restart your server and it should load your intl extension correctly.
Click here to cancel reply.
2
Answers
I solved the problem.
After try a lot of differents solutions i installed again Mamp and now its works.
It is saying it could not load the intl extension. Make sure your server loads the intl extension.
WRONG:
CORRECT
The semicolon (;) needs to be removed. Restart your server and it should load your intl extension correctly.