Hey I had installed xampp on windows xampp control panel 3.2.1 and I am getting this error :
Fatal error: You must enable the intl extension to use CakePHP. in G:\xampp\htdocs\hw\config\bootstrap.php on line 38
I had changed httpd.conf
and uncomment this line
LoadModule rewrite_module libexec/apache2/mod_rewrite.so
and change directory attributes :
<Directory />
Options FollowSymLinks
AllowOverride All
Order deny,allow
Deny from all
</Directory>
to this and restarted the apache and I am still getting this message Fatal error:
You must enable the intl extension to use CakePHP. in G:\xampp\htdocs\hw\config\bootstrap.php on line 38
mod_rewrite
has nothing to do with this error. You should uncommentextension=php_intl.dll
. AlsoDeny from all
is going to deny all, including yourself. So once you are past this error, you will run into that. You might want to change that section toRequire local
– AKKAweb