intl extension not support

I have a problem. Error “Message format ‘date’ is not supported. You have to install PHP intl extension to use this feature.” ?

I enable intl extension in php.ini but still error. I use XAMPP 1.8.3-4 on mac OSX Yosimite.

Help me please.

Have you done it in correct php.ini? Have you restarted apache?

Like samdark said…

To figure out where the "correct" php.ini is located you can do:

Create a new php file in a web accessable folder.

phpinfo.php




<?php 


echo phpinfo(); 


?>



Open the file in a browser and look for "Loaded configuration file"…

Or (if the xampp package is the same on mac like on windows) open:

http://localhost/xampp/

and click on "phpinfo()" at the dashboard.

Regards