CakePHP 3.0.1 error message

5

I have a problem installing CakePHP , I'm using Xampp , with PHP 5.5, and displays the message:

  

Fatal error: You must enable the intl extension to use CakePHP. in   C: \ Users \ inhome \ Desktop \ io \ CAKEPHPROJECT \ htdocs \ projectCake \ config \ bootstrap.php   online 38

I've already done a search in forums, I've already changed extension=php_intl.dll , I've copied the files from /xamp/php/ic*.dll to /xampp/apache/bin as this #

asked by anonymous 14.04.2015 / 20:17

1 answer

0

Only remove ; before extension=php_intl.dll , it looks like this:

;extension=php_gmp.dll
extension=php_intl.dll
;extension=php_imap.dll

After this restart your server and you are done, you will access it normally.

    
22.07.2015 / 03:55