I am trying to install Thelia 2 on XAMPP on Mac. However, I get stuck with the error message on step 2:
I tried a lot of things and am pretty sure intl is enabled:
$ php -m | grep intl
intl
Any idea?
you must check if intl is installed using phpinfo() function via apache (or nginx). Using php cli only show you the conf for this sapi. Your php configuration can be different between cli and apache (or nginx, cgi, etc).
So put a file info.php for example and call phpinfo() function in it. Then display this page throw you web browser.