FOSuserBundle and php 5.5
I've searched the PHPuserBundle documentation and can't find a link to PHP version support issues.
Ive just updated my php version to 5.6 (using XAMPP) and I am getting the following error when submitting to login_check.
Attempted to call function "mb_convert_case" from namespace "FOS\UserBundle\Util
Is it better to stick with 5.4 for now? I tried 5.5 and got the same error. My only reason for updating is to stay updated, so it's not life but death, but I'm curious.
thank.
Try uncommenting / adding this line to your php.ini:
extension = php_mbstring.dll
Latest version ("friendsofsymfony / user-bundle": "2.0.*@dev") FOSUSerBundle works with PHP> = 5.3.2.
You can check it out at packagist.org - https://packagist.org/packages/friendsofsymfony/user-bundle
If you are on Windows, you must uncomment the php_mbstring.dll file in the php.ini file. Check this answer - mb_convert_case undefined function (Symfony2 FOS / UserBundle)