It looks like you're missing an entry for firewall_name under fos_user. 
That's required and can't be left blank. If you look at 
FOS\UserBundle\DependencyInjection\Configuration.php, it has the following:

        $rootNode
            ->children()
                
->scalarNode('db_driver')->cannotBeOverwritten()->isRequired()->cannotBeEmpty()->end()
                
->scalarNode('firewall_name')->isRequired()->cannotBeEmpty()->end()
            ->end();

So in your case, terberger, you need to make sure you have a line under 
fos_user that says:

firewall_name: main

My guess is JC is missing a required configuration option as well.

-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

You received this message because you are subscribed to the Google
Groups "symfony users" group.
To post to this group, send email to symfony-users@googlegroups.com
To unsubscribe from this group, send email to
symfony-users+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en

Reply via email to