Cakephp 3.0.1 error message

Asked

Viewed 3,525 times

5

I have a problem installing the Cakephp, I’m using the 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 on line 38

I already did a search on forums, I changed the extension=php_intl.dll, I copied the files from /xamp/php/ic*.dll for /xampp/apache/bin according to this link from Soen and yet the problem persists.

Someone can help me?

  • Check in the php.ini file if the line looks like this, it is with the correct path (in my case where the dlls are ). extension_dir="C: xampp php ext" // Also configure the PATH environment variable with the contents C: xampp php;(if not already configured)

  • Thanks @Marcosxavier, was on the job then edit the variables was not possible, but at home solved everything.. D: D

1 answer

1


Just take the ; before extension=php_intl.dll, he’ll be like this:

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

After this restart your server and ready, you will access normally.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.