Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hello everybody and a first thank for reading this message.

Here my current configuration :

  • Symfony 2.1.6
  • FOS User bundle 1.2.4
  • php 5.3.14 under WAMP (in a mac)

I have searched all the day and saw a lot of topics in the Internet but never gave me the right answer.

The problem happens when I try to create new user in FOS Bundle (in SF 2.1) like this :

$ php app/console fos:user:createPlease choose a username:chris
Please choose an email:chris@gmail.com
Please choose a password:lol

Fatal error: Call to undefined function FOS\UserBundle\Util\mb_convert_case() in /Applications/MAMP/htdocs/makinmind/site/vendor/friendsofsymfony/user-bundle/FOS/UserBundle/Util/Canonicalizer.php on line 18

As you see, it creates an error. I don't know how to solve the problem...

For information and to help you : After that, I try the check tool of Symfony with the command line

$ php app/check.php

And it shows this :

********************************
*                              *
*  Symfony requirements check  *
*                              *
********************************

php.ini used by PHP: /Applications/MAMP/bin/php/php5.3.14/conf/php.ini

** WARNING **
*  The PHP CLI can use a different php.ini file
*  than the one used with your web server.
*  If this is the case, please ALSO launch this
*  utility from your web server.
** WARNING **

** Mandatory requirements **

  OK        Checking that PHP version is at least 5.3.2 (5.3.20 installed)
  OK        Checking that the "date.timezone" setting is set
  OK        Checking that app/cache/ directory is writable
  OK        Checking that the app/logs/ directory is writable
  OK        Checking that the json_encode() is available


[[ ERROR ]] Checking that the SQLite3 or PDO_SQLite extension is available: FAILED
            *** Install and enable the SQLite3 or PDO_SQLite extension. ***
You must fix this problem before resuming the check.

So, I try to install sqlite3 to switch off the warnings above (I'm in a Mac so I set up sqlite with macports...). After that I get this :

$ sqlite3 --version
3.7.15 2012-12-12 13:36:53 cd0b37c52658bfdf992b1e3dc467bae1835a94ae

So, for me sqlite is installed but actually I think not. I think it's a problem of version of PHP. In fact, I have one version in Cli and another for MAMP.. I assume to be a bit confusing about that... So it is what php cli displays about the php version :

$ php --version
PHP 5.3.20 (cli) (built: Dec 23 2012 17:47:26) 
Copyright (c) 1997-2012 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2012 Zend Technologies
    with XCache v1.3.2, Copyright (c) 2005-2011, by mOo

PHP Cli version of php is 5.3.2 but MAMP is using PHP version 3.3.14... Is it the same or not the same version? Maybe the problem occurs here... But I'm not capable to resolve it alone I thing... :( I actually use an alias for php execution in cli :

alias php="php -c /Applications/MAMP/bin/php/php5.3.14/conf/php.ini"
export PATH=/opt/local/bin:/opt/local/sbin:$PATH

And finally the ini information of php set up :

$ php --ini
Configuration File (php.ini) Path: /opt/local/etc/php5
Loaded Configuration File:         /Applications/MAMP/bin/php/php5.3.14/conf/php.ini
Scan for additional .ini files in: /opt/local/var/db/php5
Additional .ini files parsed:      /opt/local/var/db/php5/intl.ini,
/opt/local/var/db/php5/sqlite.ini

So, can you please please please help me to install correctly sqlite3 in mamp because it's not recognized by php as you can see...

If somebody has an idea to create a user without resolving this problem of sqlite, I will enjoy! if you need other information about config or error message, just ask me !

Thank you everybody, and thank you for help!

share|improve this question
2  
Basically I think that you should compile php with mbstring extension to have mb_convert_case function. Please see php.net/manual/en/mbstring.installation.php about your sqlite problem... you should install pdo sqlite and sqlite3 for php (via pecl for example) – l3l0 Dec 23 '12 at 20:05

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.