During orocrm installation (a platform developed with symfony 2) I receive this error
Fatal error: Uncaught exception 'Symfony\Component\Intl\Exception\MethodArgumentValueNotImplementedException' with message 'The Symfony\Component\Intl\Collator\Collator::__construct() method's argument $locale value 'fr_FR' behavior is not implemented. Only the locale "en" is supported. Please install the "intl" extension for full localization capabilities.' in /Users/ale/Sites/educacloud- bo/vendor/symfony/symfony/src/Symfony/Component/Intl/Collator/Collator.php:80
Stack trace:
#0 /Users/ale/Sites/educacloud-bo/app/SymfonyRequirements.php(619): Symfony\Component\Intl\Collator\Collator->__construct('fr_FR')
#1 /Users/ale/Sites/educacloud-bo/app/OroRequirements.php(24): SymfonyRequirements->__construct()
#2 /Users/ale/Sites/educacloud-bo/app/oro-check.php(6): OroRequirements->__construct()
#3 {main}
thrown in /Users/ale/Sites/educacloud-bo/vendor/symfony/symfony/src/Symfony/Component/Intl/Collator/Collator.php on line 80
but I have installed intl extension:
# php -i | grep intl
/usr/local/php5/php.d/50-extension-intl.ini,
intl
intl.default_locale => it_IT => it_IT
intl.error_level => 0 => 0
and php_info() on my browser give me these results:
version 1.1.0
ICU version 4.6
ICU Data version 4.6
What is the problem? thanks Alessandra
symfony/icu
is installed? – Danubecomposer.lock
file. – Danubephp5-intl
triggers the dependency installation oflibicu52
, maybe some backward compatibility issues here – Dracaena