Code Monkey home page Code Monkey logo

fosuserbundle's People

Contributors

1ed avatar beberlei avatar braisgabin avatar cedriclombardot avatar cordoval avatar core23 avatar craue avatar dbu avatar docteurklein avatar dustin10 avatar felds avatar gimler avatar herzult avatar jmikola avatar julesbou avatar lsmith77 avatar mbontemps avatar merk avatar mweimerskirch avatar ornicar avatar rcousens avatar schmittjoh avatar soullivaneuh avatar sstok avatar stof avatar symfonyaml avatar weaverryan avatar willdurand avatar xwb avatar yozhef avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

fosuserbundle's Issues

Every Entity must have an identifier/primary key

[Doctrine\ORM\Mapping\MappingException]
No identifier/primary key specified for Entity 'Application\MyBundle\Entity\Group'. Every Entity must have an identifier/primary key.

I tryed to redeclare the $id in my Group.php with the right annotations but it gives me SQL error

/**
 * @orm:Id
 * @orm:Column(type="integer")
 * @orm:generatedValue(strategy="AUTO")
*/
protected $id;

SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Group (id INT AUTO_INCREMENT NOT NULL, name VARCHAR(255) NOT NULL, roles LONGTEX' at line 1

security.encoder.digest.class missing

The UserBundle did not find the "security.encoder.digest.class" defined in Symfony/Bundle/FrameworkBundle/Resources/Config/security.xml so I had to add the parameter manually to UserBundle/Resources/config/security.xml.

I don't think this is intetionally right. But it made it work somehow.

My next problem is, that I work with yml instead of xml. Do you know a simple way to import xml files as resources from a yml file? Or will you provide the routes in yml as well?

Thx
Johannes

Installing into standard distribution (PR10)

Hi there!

Took me about 1.5 hours to figure out that I have to make following setting when integrating the userbundle into symfony-standard:

   firewalls:
        main:
            anonymous:    true

Before that i always had an recursive redirect to the login page for every page in my app -> no error message at all.
I'm quite new to Symfony. Maybe there should be an explanation for every parameter which can be set?
Some further issue: I was not sure whether to put the settings into config.yml (as explained in your installation documentation) or to put in the security.yml (where it actually belongs). Now it seams that everything works fine.

Note: I don't want to complain by any means here- just wanted to give you some feedback. Its great to have this bundle!

BR Steph

Add a complete test suite

Currently only the DI tests are uptodate. The other one are broken because of the changes.
My commit fixing the commands yesterday should have been made 2 weeks before when the change occured in the framework but it was unnoticed because nobody ran the commands at the time.

Tests needs also to be functionnal ones (controllers and commands) so we need to find a way to have a testing environment for all devs (using the test suite of our own projects is not a good solution as we will likely customize some part so we would not test the bundle implementation). One solution I see would be creating a sandbox repo containing a environment to run the tests with the default implementation of the bundle. This would allow all devs to test it in the same environment.

userbundle in symfony2 standard-edition not working?

checked out your newest revision (from today), and tried to install it twice. but can't get it running. error message:
"InvalidArgumentException: The service "security.user.provider.concrete.fos_userbundle" does not exist. in /Applications/MAMP/htdocs/symfony-standard/app/bootstrap.php on line 112"

after reloading i get
"LogicException: Circular reference detected for service "security.context" (services currently loading: routing.loader.real, assetic.asset_manager, twig, security.context, security.authentication.manager, profiler, data_collector.security). in /Applications/MAMP/htdocs/symfony-standard/app/bootstrap.php on line 103"

guess thats some kind of cache issue....

any ideas on this one?

Requires unnecessary config value when not using a Group class

I don't want to use any Group functionality and therefor removed all Group related code from my User entity. This works like a charm but I still have to configure a group class.

# FOS User
fos_user:
    db_driver: orm
    provider_key: fos_facebook
    class:
        model:
            user:           Caefer\FacebookBundle\Entity\User
            group:          FOS\UserBundle\Entity\DefaultGroup

If I remove this last line I am getting the following error:

**Fatal error**: Uncaught exception 'Symfony\Component\Config\Definition\Exception\InvalidConfigurationException' with message 'The node at path "fos_user.class.model.group" must be configured.' in /var/www/ical.ly/bas/vendor/symfony/src/Symfony/Component/Config/Definition/ArrayNode.php:311 Stack trace: #0 /var/www/ical.ly/bas/vendor/symfony/src/Symfony/Component/Config/Definition/BaseNode.php(205): Symfony\Component\Config\Definition\ArrayNode->finalizeValue(Array) #1 /var/www/ical.ly/bas/vendor/symfony/src/Symfony/Component/Config/Definition/ArrayNode.php(325): Symfony\Component\Config\Definition\BaseNode->finalize(Array) #2 /var/www/ical.ly/bas/vendor/symfony/src/Symfony/Component/Config/Definition/BaseNode.php(205): Symfony\Component\Config\Definition\ArrayNode->finalizeValue(Array) #3 /var/www/ical.ly/bas/vendor/symfony/src/Symfony/Component/Config/Definition/ArrayNode.php(325): Symfony\Component\Config\Definition\BaseNode->finalize(Array) #4 /var/www/ical.ly/bas/vendor/symfony/src/Symfony/Component/Config/Definition/Bas in /var/www/ical.ly/bas/vendor/symfony/src/Symfony/Component/Config/Definition/ArrayNode.php on line 311

Sample config in documentation bug

Hi,

I was trying to get this awesome bundle working, but first few tries got always ended with Exception ;) so I started looking deeper:

# app/config/config.yml
fos_user.config:
    db_driver: orm
    model:
        user:
            class: Application\MyBundle\Entity\User

is incorrect, should be:

# app/config/config.yml
fos_user.config:
    db_driver: orm
    class:
        model:
            user: Application\MyBundle\Entity\User

there should be also info about that you need too enable security with atleast minimal config, for example:

# app/config/config.yml
security.config:
    providers:
        fos_user:
            password_encoder: sha1

Using the good EntityManager/DocumentManager

The current implementation injects the entity manager called default in the UserManager. This is fine when a single entity manager is defiend as this is the name used when using the short syntax in the configuration. But it is absolutely not mandatory to define an entity_manager named default.
Using doctrine.orm.entity_manager would give us the entity manager marked as being the default one which would always exists but the bundle will still be broken if the User and Group entities are managed by another entity manager.

Same occurs for MongoDB by doing a search/replace in my previous explanation.

fos_user.config yaml configuration

Hi there,

I think the documentation has to be adjusted - it states two possible ways to configure the model in app/config/config.yml:

for odm:
fos_user.config/model/user/class

for orm:
fos_user.config/class/model/user

I think the ODM one is wrong.

Cheers
Johannes

loadUserByAccount() needs to be added.

I think one of the UserManagers will need to implement the:

loadUserByAccount(AccountInterface $account)

method. It's defined in the interface:

Symfony\Component\Security\Core\User\UserProviderInterface

Thanks,
Piers

Email in request reset password form is not validated

No form exists for that view (requestResetPassword), if user enters non existing email he is forwarded to error page. We should implement simple form to check if user with that email exists and show normal form error message.

Removing the groups or making them optionnal ?

I was thinking of a way to make the whole group handling totally optionnal to load it only if the user activate it as the role hierarchy makes it useless for most users. Johannes suggested on IRC to remove the groups totally (for the same reason: it is useless).

So I would like a vote to know if we keep the groups in UserBundle or not.

Fatal error: Declaration of FOS\UserBundle\Entity\Group::setRoles() must be compatible with that of FOS\UserBundle\Model\GroupInterface::setRoles()

After setting up the UserBundle configuration, I had several major issues with Declaration!
(after the command "php app/console doctrine:generate:entities FOSUserBundle")

I'll give you a few issue examples:

Fatal error: Access level to FOS\UserBundle\Entity\User::$username must be protected (as in class FOS\UserBundle\Model\User) or weaker in ../vendor/bundles/FOS/UserBundle/Entity/User.php on line 16

Strict standards: Declaration of FOS\UserBundle\Entity\User::setCredentialsExpireAt() should be compatible with that of FOS\UserBundle\Model\User::setCredentialsExpireAt() in ../vendor/bundles/FOS/UserBundle/Entity/User.php on line 16

Strict standards: Declaration of FOS\UserBundle\Entity\User::setExpiresAt() should be compatible with that of FOS\UserBundle\Model\User::setExpiresAt() in ../vendor/bundles/FOS/UserBundle/Entity/User.php on line 16

........ and so on...

does anybody has any idea, what the problem could be??? is this a known issue?
(i'm using the latest symfony version)

Error in UserForm

Hi,

After upgrading symfony to latest revision I have an issue with UserForm:
Call to undefined method Bundle\FOS\UserBundle\Form\UserForm::setValidationGroups()

Seems that Bernhard did some refactoring with forms right?

User.php from doc/index.rst

Copy from doc/index.rst

/**
* @orm:ManyToMany(targetEntity="FOS\UserBundle\Entity\DefaultGroup" field="groups")
* @orm:JoinTable(name="fos_user_user_group",
* joinColumns={@orm:JoinColumn(name="user_id", referencedColumnName="id")},
* inverseJoinColumns={@orm:JoinColumn(name="group_id", referencedColumnName="id")}
* )
*/
protected $groups;

after doctrine:generate:entities
get error:

[Doctrine\Common\Annotations\AnnotationException]
[Syntax Error] Expected Doctrine\Common\Annotations\Lexer::T_CLOSE_PARENTHESIS, got 'field' at position 66 in property APM\TestDesignBundle\Entity\User::$groups.

User user user_id not username in routes

Username often contains email. That breaks symfony routing, which makes admin actions not reachable. I could provide fix for that issue if my approach is ok for you guys ?

Application\FOS\UserBundle\Document\User is not a valid document or mapped super class.

Hi !

I try to use UserBundle with ODM, and i'm stucked on a little pb :)

When i extends the User Document (in a Application/FOS/UserBundle/Document folder)

<?php

namespace Application\FOS\UserBundle\Document;
use Bundle\FOS\UserBundle\Document\User as BaseUser;
use Application\MyBundle\Document\Company;
/**
 * @mongodb:Document(
 *   repositoryClass="Application\FOS\UserBundle\Document\UserRepository",
 *   collection="user"
 * )
 */
class User extends BaseUser 
{
    /**
     * @mongodb:ReferenceOne(targetDocument="Company")
     */
    protected $company;

    public function getCompany()
    {
        return $this->company;
    }

    public function setCompany($company)
    {
        $this->company = $company;
    }
}

And i run php app/console fos:user:create dator [email protected] test
the command returns me :

Class Application\FOS\UserBundle\Document\User is not a valid document or mapped super class.

However i've check lichess and the UserBundle readme and I dont see my mistake :)

Thanks a lot :)

error: FOSUserExtension

!/usr/bin/env php

PHP Fatal error: Class FOS\UserBundle\DependencyInjection\FOSUserExtension contains 1 abstract method and must therefore be declared abstract or implement the remaining methods (Symfony\Component\DependencyInjection\Extension\ExtensionInterface::getAlias) in /home/.../src/FOS/UserBundle/DependencyInjection/FOSUserExtension.php on line 87

Cannot load it

When ill follow the instructions, everythings ill get is no action nor output from cli.

I am using the last symfony2 sandbox

Remove the flush call in updateUser and updateGroup

Flushing in updateUser hide the flush to the user and made us loose part of the power of Doctrine. A method would still be needed to do the flush in a agnostic way in our controllers but this would decouple the updating of the prePersist/preUpdate logic and the flush.
An ActiveRecord implementation could just have all the logic in updateUser and do nothing in the flush method.

This solution would keep the logic explicit (even more than currently as the flush would not be hidden) as it was a concern for some devs with #48

not allowed to define new elements for path "security.providers"

Fatal error: Uncaught exception 'Symfony\Component\Config\Definition\Exception\InvalidConfigurationException' with message 'You are not allowed to define new elements for path "security.providers". Please define all elements for this path in one config file.' in /Users/Tristan/Sites/st2/vendor/symfony/src/Symfony/Component/Config/Definition/PrototypedArrayNode.php on line 247

Happening in PR10

Am I missing something ? does the config changed for UserBundle ?

Thanks

Processor class not found

I used PR6 version of Symfony2 and the latest git version of UserBundle.
After following documentation I got this:

Fatal error: Class 'Symfony\Component\DependencyInjection\Configuration\Processor' not found in /home/user/workspace/project/src/FOS/UserBundle/DependencyInjection/UserExtension.php on line 16

Error in UserForm

Hi,

After upgrading symfony to latest revision I have an issue with UserForm:
Call to undefined method Bundle\FOS\UserBundle\Form\UserForm::setValidationGroups()

Seems that Bernhard did some refactoring with forms right?

use LiipViewBundle

ok, just gotta ask before i try to do all sorts of other stuff instead of fixing the source issue. so right now i am using the LiipMultiplexBundle to json-ify the UserBundle, but i just learned that this opens up a gaping security issue. So now I either reimplement all UserBundle controller actions I need to be json-aware or implement a bandaid whitelist on top of the LiipMultiplexBundle.

However of course the much nicer solution would be to add the LiipViewBundle to the FOSUB so that none of the above would be necessary. Don't worry I will not cry and moan if you guys say no, but I rather ask to find out later that you guys would have been ok with it :)

Security encoder error

Hello,

I stumbled on a bug in you UserBundle

 InvalidArgumentException: The parameter "security.encoder.digest.class" must be defined. in /src/vendor/symfony/src/Symfony/Component/DependencyInjection/ParameterBag/ParameterBag.php on line 77

With all the updated vendor :(

When I add

<parameter key="security.encoder.digest.class">Symfony\Component\Security\Encoder\MessageDigestPasswordEncoder</parameter> 

There is no more error (of course) :)

Any ideas ? Other people stumbled on it ?

Thanks :)

Uncaught exception 'InvalidArgumentException' with message 'Bundle "FOSUserBundle" does not exist or it is not enabled.

Hi,

I have the following problem when I'm trying to create a new user using:

php app/console fos:user:create

PHP Fatal error: Uncaught exception 'InvalidArgumentException' with message 'Bundle "FOSUserBundle" does not exist or it is not enabled.' in /home/laguirre/proyectos/epagos/vendor/symfony/src/Symfony/Bundle/DoctrineAbstractBundle/DependencyInjection/AbstractDoctrineExtension.php:77
Stack trace:
#0 /home/laguirre/proyectos/epagos/vendor/symfony/src/Symfony/Bundle/DoctrineBundle/DependencyInjection/DoctrineExtension.php(270): Symfony\Bundle\DoctrineAbstractBundle\DependencyInjection\AbstractDoctrineExtension->loadMappingInformation(Array, Object(Symfony\Component\DependencyInjection\ContainerBuilder))
#1 /home/laguirre/proyectos/epagos/vendor/symfony/src/Symfony/Bundle/DoctrineBundle/DependencyInjection/DoctrineExtension.php(183): Symfony\Bundle\DoctrineBundle\DependencyInjection\DoctrineExtension->loadOrmEntityManagerMappingInformation(Array, Object(Symfony\Component\DependencyInjection\Definition), Object(Symfony\Component\DependencyInjection\ContainerBuilder))
#2 /home/laguirre/proyectos/epagos/vendor/symfony/src/Symfony/Bun in /home/laguirre/proyectos/epagos/vendor/symfony/src/Symfony/Bundle/DoctrineAbstractBundle/DependencyInjection/AbstractDoctrineExtension.php on line 77

Fatal error: Uncaught exception 'InvalidArgumentException' with message 'Bundle "FOSUserBundle" does not exist or it is not enabled.' in /home/laguirre/proyectos/epagos/vendor/symfony/src/Symfony/Bundle/DoctrineAbstractBundle/DependencyInjection/AbstractDoctrineExtension.php:77
Stack trace:
#0 /home/laguirre/proyectos/epagos/vendor/symfony/src/Symfony/Bundle/DoctrineBundle/DependencyInjection/DoctrineExtension.php(270): Symfony\Bundle\DoctrineAbstractBundle\DependencyInjection\AbstractDoctrineExtension->loadMappingInformation(Array, Object(Symfony\Component\DependencyInjection\ContainerBuilder))
#1 /home/laguirre/proyectos/epagos/vendor/symfony/src/Symfony/Bundle/DoctrineBundle/DependencyInjection/DoctrineExtension.php(183): Symfony\Bundle\DoctrineBundle\DependencyInjection\DoctrineExtension->loadOrmEntityManagerMappingInformation(Array, Object(Symfony\Component\DependencyInjection\Definition), Object(Symfony\Component\DependencyInjection\ContainerBuilder))
#2 /home/laguirre/proyectos/epagos/vendor/symfony/src/Symfony/Bun in /home/laguirre/proyectos/epagos/vendor/symfony/src/Symfony/Bundle/DoctrineAbstractBundle/DependencyInjection/AbstractDoctrineExtension.php on line 77

I'm working with PR9.

Thanks in advance.

Best regards,

Luis

rename "provider_key"

seems its confusing a lot of users and its named provider_key just because SecurityBundle internally stores the same value in a variable $providerKey.

maybe "firewall_name" or "firewall_key" is clearer.

help in cache management

Symfony2 reads the user from the database on every request. wondering if we can help users here by implementing cache strategies or something like that.

Twig template does not have access to fos_user_security helper

Hi :)

I was testing the new version of UserBundle (awesome work), but when i wanted to check if an user is connected, i tried with:

_view.fos_user_security.isAnonymous

But _view has been removed, I tried with

fos_user_security.isAnonymous

But no way to get the thing done :)

Thanks a lot.

Clément

How to use?

I try to use the UserBundle, with mixed success so far. I pretty much followed the index.rst installation manual using the XML configuration files. I can create / edit /delete users with the included controllers - however I can not login. For restricted areas i get redirected to the login page (as intended), but any attempt to login with one of the users ends sends me to the /login-check page.

My security config looks like this ::
security:config
<security:provider name="fos_user" id="fos_user.user_manager">/security:provider

  <security:firewall pattern="/extranet.*" >
    <form-login login_path="/login" check_path="/login-check" />
    <logout />
  </security:firewall>

  <security:access-control>
    <security:rule path="/extranet.*" role="ROLE_USER" />
  </security:access-control>

</security:config>

Any idea what could be the problem? I'm trying with a symfony sandbox and userbundle downloaded this morning from github

Redirect loop

Using latest symfony2 + userbundle, after installation it does a constant redirect when going to /login.

2011-03-18T14:08:51+08:00 DEBUG: Notified event "core.request" to listener "request_listener:handle" (notifyUntil)
2011-03-18T14:08:51+08:00 INFO: Matched route "_security_login" (parameters: {"_controller":"fos_user.controller.security:loginAction","_route":"_security_login"})
2011-03-18T14:08:51+08:00 DEBUG: Notified event "core.request" to listener "profiler_listener:handleRequest" (notifyUntil)
2011-03-18T14:08:51+08:00 DEBUG: Notified event "core.request" to listener "security.firewall:handle" (notifyUntil)
2011-03-18T14:08:51+08:00 DEBUG: Notified event "core.exception" to listener "profiler_listener:handleException" (notifyUntil)
2011-03-18T14:08:51+08:00 DEBUG: Notified event "core.exception" to listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" (notifyUntil)
2011-03-18T14:08:51+08:00 INFO: Authentication exception occurred; redirecting to authentication entry point (A Token was not found in the SecurityContext.)
2011-03-18T14:08:51+08:00 DEBUG: Calling Authentication entry point
2011-03-18T14:08:51+08:00 DEBUG: Listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" processed the event "core.exception"
2011-03-18T14:08:51+08:00 DEBUG: Listener "exception_listener:handle" was not called for event "core.exception"
2011-03-18T14:08:51+08:00 DEBUG: Notified event "core.response" to listener "response_listener:filter" (filter)
2011-03-18T14:08:51+08:00 DEBUG: Notified event "core.response" to listener "profiler_listener:handleResponse" (filter)
2011-03-18T14:08:51+08:00 DEBUG: Notified event "core.response" to listener "security.rememberme.response_listener:handle" (filter)
2011-03-18T14:08:51+08:00 DEBUG: Notified event "core.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::write" (filter)
2011-03-18T14:08:51+08:00 DEBUG: Notified event "core.response" to listener "debug.toolbar:handle" (filter)
2011-03-18T14:08:51+08:00 DEBUG: Notified event "core.request" to listener "request_listener:handle" (notifyUntil)
2011-03-18T14:08:51+08:00 INFO: Matched route "_security_login" (parameters: {"_controller":"fos_user.controller.security:loginAction","_route":"_security_login"})
2011-03-18T14:08:51+08:00 DEBUG: Notified event "core.request" to listener "profiler_listener:handleRequest" (notifyUntil)
2011-03-18T14:08:51+08:00 DEBUG: Notified event "core.request" to listener "security.firewall:handle" (notifyUntil)
2011-03-18T14:08:51+08:00 DEBUG: Notified event "core.exception" to listener "profiler_listener:handleException" (notifyUntil)
2011-03-18T14:08:51+08:00 DEBUG: Notified event "core.exception" to listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" (notifyUntil)
2011-03-18T14:08:51+08:00 INFO: Authentication exception occurred; redirecting to authentication entry point (A Token was not found in the SecurityContext.)
2011-03-18T14:08:51+08:00 DEBUG: Calling Authentication entry point
2011-03-18T14:08:51+08:00 DEBUG: Listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" processed the event "core.exception"
2011-03-18T14:08:51+08:00 DEBUG: Listener "exception_listener:handle" was not called for event "core.exception"
2011-03-18T14:08:51+08:00 DEBUG: Notified event "core.response" to listener "response_listener:filter" (filter)
2011-03-18T14:08:51+08:00 DEBUG: Notified event "core.response" to listener "profiler_listener:handleResponse" (filter)
2011-03-18T14:08:51+08:00 DEBUG: Notified event "core.response" to listener "security.rememberme.response_listener:handle" (filter)
2011-03-18T14:08:51+08:00 DEBUG: Notified event "core.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::write" (filter)
2011-03-18T14:08:51+08:00 DEBUG: Notified event "core.response" to listener "debug.toolbar:handle" (filter)
2011-03-18T14:08:51+08:00 DEBUG: Notified event "core.request" to listener "request_listener:handle" (notifyUntil)
2011-03-18T14:08:51+08:00 INFO: Matched route "_security_login" (parameters: {"_controller":"fos_user.controller.security:loginAction","_route":"_security_login"})
2011-03-18T14:08:51+08:00 DEBUG: Notified event "core.request" to listener "profiler_listener:handleRequest" (notifyUntil)
2011-03-18T14:08:51+08:00 DEBUG: Notified event "core.request" to listener "security.firewall:handle" (notifyUntil)
2011-03-18T14:08:51+08:00 DEBUG: Notified event "core.exception" to listener "profiler_listener:handleException" (notifyUntil)
2011-03-18T14:08:51+08:00 DEBUG: Notified event "core.exception" to listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" (notifyUntil)
2011-03-18T14:08:51+08:00 INFO: Authentication exception occurred; redirecting to authentication entry point (A Token was not found in the SecurityContext.)
2011-03-18T14:08:51+08:00 DEBUG: Calling Authentication entry point
2011-03-18T14:08:51+08:00 DEBUG: Listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" processed the event "core.exception"
2011-03-18T14:08:51+08:00 DEBUG: Listener "exception_listener:handle" was not called for event "core.exception"
2011-03-18T14:08:51+08:00 DEBUG: Notified event "core.response" to listener "response_listener:filter" (filter)
2011-03-18T14:08:51+08:00 DEBUG: Notified event "core.response" to listener "profiler_listener:handleResponse" (filter)
2011-03-18T14:08:51+08:00 DEBUG: Notified event "core.response" to listener "security.rememberme.response_listener:handle" (filter)
2011-03-18T14:08:51+08:00 DEBUG: Notified event "core.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::write" (filter)
2011-03-18T14:08:51+08:00 DEBUG: Notified event "core.response" to listener "debug.toolbar:handle" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "request_listener:handle" (notifyUntil)
2011-03-18T14:08:52+08:00 INFO: Matched route "_security_login" (parameters: {"_controller":"fos_user.controller.security:loginAction","_route":"_security_login"})
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "profiler_listener:handleRequest" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "security.firewall:handle" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.exception" to listener "profiler_listener:handleException" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.exception" to listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" (notifyUntil)
2011-03-18T14:08:52+08:00 INFO: Authentication exception occurred; redirecting to authentication entry point (A Token was not found in the SecurityContext.)
2011-03-18T14:08:52+08:00 DEBUG: Calling Authentication entry point
2011-03-18T14:08:52+08:00 DEBUG: Listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" processed the event "core.exception"
2011-03-18T14:08:52+08:00 DEBUG: Listener "exception_listener:handle" was not called for event "core.exception"
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "response_listener:filter" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "profiler_listener:handleResponse" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "security.rememberme.response_listener:handle" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::write" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "debug.toolbar:handle" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "request_listener:handle" (notifyUntil)
2011-03-18T14:08:52+08:00 INFO: Matched route "_security_login" (parameters: {"_controller":"fos_user.controller.security:loginAction","_route":"_security_login"})
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "profiler_listener:handleRequest" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "security.firewall:handle" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.exception" to listener "profiler_listener:handleException" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.exception" to listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" (notifyUntil)
2011-03-18T14:08:52+08:00 INFO: Authentication exception occurred; redirecting to authentication entry point (A Token was not found in the SecurityContext.)
2011-03-18T14:08:52+08:00 DEBUG: Calling Authentication entry point
2011-03-18T14:08:52+08:00 DEBUG: Listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" processed the event "core.exception"
2011-03-18T14:08:52+08:00 DEBUG: Listener "exception_listener:handle" was not called for event "core.exception"
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "response_listener:filter" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "profiler_listener:handleResponse" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "security.rememberme.response_listener:handle" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::write" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "debug.toolbar:handle" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "request_listener:handle" (notifyUntil)
2011-03-18T14:08:52+08:00 INFO: Matched route "_security_login" (parameters: {"_controller":"fos_user.controller.security:loginAction","_route":"_security_login"})
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "profiler_listener:handleRequest" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "security.firewall:handle" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.exception" to listener "profiler_listener:handleException" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.exception" to listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" (notifyUntil)
2011-03-18T14:08:52+08:00 INFO: Authentication exception occurred; redirecting to authentication entry point (A Token was not found in the SecurityContext.)
2011-03-18T14:08:52+08:00 DEBUG: Calling Authentication entry point
2011-03-18T14:08:52+08:00 DEBUG: Listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" processed the event "core.exception"
2011-03-18T14:08:52+08:00 DEBUG: Listener "exception_listener:handle" was not called for event "core.exception"
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "response_listener:filter" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "profiler_listener:handleResponse" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "security.rememberme.response_listener:handle" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::write" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "debug.toolbar:handle" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "request_listener:handle" (notifyUntil)
2011-03-18T14:08:52+08:00 INFO: Matched route "_security_login" (parameters: {"_controller":"fos_user.controller.security:loginAction","_route":"_security_login"})
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "profiler_listener:handleRequest" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "security.firewall:handle" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.exception" to listener "profiler_listener:handleException" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.exception" to listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" (notifyUntil)
2011-03-18T14:08:52+08:00 INFO: Authentication exception occurred; redirecting to authentication entry point (A Token was not found in the SecurityContext.)
2011-03-18T14:08:52+08:00 DEBUG: Calling Authentication entry point
2011-03-18T14:08:52+08:00 DEBUG: Listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" processed the event "core.exception"
2011-03-18T14:08:52+08:00 DEBUG: Listener "exception_listener:handle" was not called for event "core.exception"
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "response_listener:filter" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "profiler_listener:handleResponse" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "security.rememberme.response_listener:handle" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::write" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "debug.toolbar:handle" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "request_listener:handle" (notifyUntil)
2011-03-18T14:08:52+08:00 INFO: Matched route "_security_login" (parameters: {"_controller":"fos_user.controller.security:loginAction","_route":"_security_login"})
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "profiler_listener:handleRequest" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "security.firewall:handle" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.exception" to listener "profiler_listener:handleException" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.exception" to listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" (notifyUntil)
2011-03-18T14:08:52+08:00 INFO: Authentication exception occurred; redirecting to authentication entry point (A Token was not found in the SecurityContext.)
2011-03-18T14:08:52+08:00 DEBUG: Calling Authentication entry point
2011-03-18T14:08:52+08:00 DEBUG: Listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" processed the event "core.exception"
2011-03-18T14:08:52+08:00 DEBUG: Listener "exception_listener:handle" was not called for event "core.exception"
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "response_listener:filter" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "profiler_listener:handleResponse" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "security.rememberme.response_listener:handle" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::write" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "debug.toolbar:handle" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "request_listener:handle" (notifyUntil)
2011-03-18T14:08:52+08:00 INFO: Matched route "_security_login" (parameters: {"_controller":"fos_user.controller.security:loginAction","_route":"_security_login"})
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "profiler_listener:handleRequest" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "security.firewall:handle" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.exception" to listener "profiler_listener:handleException" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.exception" to listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" (notifyUntil)
2011-03-18T14:08:52+08:00 INFO: Authentication exception occurred; redirecting to authentication entry point (A Token was not found in the SecurityContext.)
2011-03-18T14:08:52+08:00 DEBUG: Calling Authentication entry point
2011-03-18T14:08:52+08:00 DEBUG: Listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" processed the event "core.exception"
2011-03-18T14:08:52+08:00 DEBUG: Listener "exception_listener:handle" was not called for event "core.exception"
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "response_listener:filter" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "profiler_listener:handleResponse" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "security.rememberme.response_listener:handle" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::write" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "debug.toolbar:handle" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "request_listener:handle" (notifyUntil)
2011-03-18T14:08:52+08:00 INFO: Matched route "_security_login" (parameters: {"_controller":"fos_user.controller.security:loginAction","_route":"_security_login"})
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "profiler_listener:handleRequest" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "security.firewall:handle" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.exception" to listener "profiler_listener:handleException" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.exception" to listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" (notifyUntil)
2011-03-18T14:08:52+08:00 INFO: Authentication exception occurred; redirecting to authentication entry point (A Token was not found in the SecurityContext.)
2011-03-18T14:08:52+08:00 DEBUG: Calling Authentication entry point
2011-03-18T14:08:52+08:00 DEBUG: Listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" processed the event "core.exception"
2011-03-18T14:08:52+08:00 DEBUG: Listener "exception_listener:handle" was not called for event "core.exception"
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "response_listener:filter" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "profiler_listener:handleResponse" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "security.rememberme.response_listener:handle" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::write" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "debug.toolbar:handle" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "request_listener:handle" (notifyUntil)
2011-03-18T14:08:52+08:00 INFO: Matched route "_security_login" (parameters: {"_controller":"fos_user.controller.security:loginAction","_route":"_security_login"})
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "profiler_listener:handleRequest" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "security.firewall:handle" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.exception" to listener "profiler_listener:handleException" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.exception" to listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" (notifyUntil)
2011-03-18T14:08:52+08:00 INFO: Authentication exception occurred; redirecting to authentication entry point (A Token was not found in the SecurityContext.)
2011-03-18T14:08:52+08:00 DEBUG: Calling Authentication entry point
2011-03-18T14:08:52+08:00 DEBUG: Listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" processed the event "core.exception"
2011-03-18T14:08:52+08:00 DEBUG: Listener "exception_listener:handle" was not called for event "core.exception"
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "response_listener:filter" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "profiler_listener:handleResponse" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "security.rememberme.response_listener:handle" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::write" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "debug.toolbar:handle" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "request_listener:handle" (notifyUntil)
2011-03-18T14:08:52+08:00 INFO: Matched route "_security_login" (parameters: {"_controller":"fos_user.controller.security:loginAction","_route":"_security_login"})
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "profiler_listener:handleRequest" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "security.firewall:handle" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.exception" to listener "profiler_listener:handleException" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.exception" to listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" (notifyUntil)
2011-03-18T14:08:52+08:00 INFO: Authentication exception occurred; redirecting to authentication entry point (A Token was not found in the SecurityContext.)
2011-03-18T14:08:52+08:00 DEBUG: Calling Authentication entry point
2011-03-18T14:08:52+08:00 DEBUG: Listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" processed the event "core.exception"
2011-03-18T14:08:52+08:00 DEBUG: Listener "exception_listener:handle" was not called for event "core.exception"
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "response_listener:filter" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "profiler_listener:handleResponse" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "security.rememberme.response_listener:handle" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::write" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "debug.toolbar:handle" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "request_listener:handle" (notifyUntil)
2011-03-18T14:08:52+08:00 INFO: Matched route "_security_login" (parameters: {"_controller":"fos_user.controller.security:loginAction","_route":"_security_login"})
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "profiler_listener:handleRequest" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "security.firewall:handle" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.exception" to listener "profiler_listener:handleException" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.exception" to listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" (notifyUntil)
2011-03-18T14:08:52+08:00 INFO: Authentication exception occurred; redirecting to authentication entry point (A Token was not found in the SecurityContext.)
2011-03-18T14:08:52+08:00 DEBUG: Calling Authentication entry point
2011-03-18T14:08:52+08:00 DEBUG: Listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" processed the event "core.exception"
2011-03-18T14:08:52+08:00 DEBUG: Listener "exception_listener:handle" was not called for event "core.exception"
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "response_listener:filter" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "profiler_listener:handleResponse" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "security.rememberme.response_listener:handle" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::write" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "debug.toolbar:handle" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "request_listener:handle" (notifyUntil)
2011-03-18T14:08:52+08:00 INFO: Matched route "_security_login" (parameters: {"_controller":"fos_user.controller.security:loginAction","_route":"_security_login"})
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "profiler_listener:handleRequest" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "security.firewall:handle" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.exception" to listener "profiler_listener:handleException" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.exception" to listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" (notifyUntil)
2011-03-18T14:08:52+08:00 INFO: Authentication exception occurred; redirecting to authentication entry point (A Token was not found in the SecurityContext.)
2011-03-18T14:08:52+08:00 DEBUG: Calling Authentication entry point
2011-03-18T14:08:52+08:00 DEBUG: Listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" processed the event "core.exception"
2011-03-18T14:08:52+08:00 DEBUG: Listener "exception_listener:handle" was not called for event "core.exception"
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "response_listener:filter" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "profiler_listener:handleResponse" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "security.rememberme.response_listener:handle" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::write" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "debug.toolbar:handle" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "request_listener:handle" (notifyUntil)
2011-03-18T14:08:52+08:00 INFO: Matched route "_security_login" (parameters: {"_controller":"fos_user.controller.security:loginAction","_route":"_security_login"})
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "profiler_listener:handleRequest" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "security.firewall:handle" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.exception" to listener "profiler_listener:handleException" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.exception" to listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" (notifyUntil)
2011-03-18T14:08:52+08:00 INFO: Authentication exception occurred; redirecting to authentication entry point (A Token was not found in the SecurityContext.)
2011-03-18T14:08:52+08:00 DEBUG: Calling Authentication entry point
2011-03-18T14:08:52+08:00 DEBUG: Listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" processed the event "core.exception"
2011-03-18T14:08:52+08:00 DEBUG: Listener "exception_listener:handle" was not called for event "core.exception"
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "response_listener:filter" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "profiler_listener:handleResponse" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "security.rememberme.response_listener:handle" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::write" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "debug.toolbar:handle" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "request_listener:handle" (notifyUntil)
2011-03-18T14:08:52+08:00 INFO: Matched route "_security_login" (parameters: {"_controller":"fos_user.controller.security:loginAction","_route":"_security_login"})
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "profiler_listener:handleRequest" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "security.firewall:handle" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.exception" to listener "profiler_listener:handleException" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.exception" to listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" (notifyUntil)
2011-03-18T14:08:52+08:00 INFO: Authentication exception occurred; redirecting to authentication entry point (A Token was not found in the SecurityContext.)
2011-03-18T14:08:52+08:00 DEBUG: Calling Authentication entry point
2011-03-18T14:08:52+08:00 DEBUG: Listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" processed the event "core.exception"
2011-03-18T14:08:52+08:00 DEBUG: Listener "exception_listener:handle" was not called for event "core.exception"
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "response_listener:filter" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "profiler_listener:handleResponse" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "security.rememberme.response_listener:handle" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::write" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "debug.toolbar:handle" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "request_listener:handle" (notifyUntil)
2011-03-18T14:08:52+08:00 INFO: Matched route "_security_login" (parameters: {"_controller":"fos_user.controller.security:loginAction","_route":"_security_login"})
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "profiler_listener:handleRequest" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "security.firewall:handle" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.exception" to listener "profiler_listener:handleException" (notifyUntil)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.exception" to listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" (notifyUntil)
2011-03-18T14:08:52+08:00 INFO: Authentication exception occurred; redirecting to authentication entry point (A Token was not found in the SecurityContext.)
2011-03-18T14:08:52+08:00 DEBUG: Calling Authentication entry point
2011-03-18T14:08:52+08:00 DEBUG: Listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" processed the event "core.exception"
2011-03-18T14:08:52+08:00 DEBUG: Listener "exception_listener:handle" was not called for event "core.exception"
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "response_listener:filter" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "profiler_listener:handleResponse" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "security.rememberme.response_listener:handle" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::write" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.response" to listener "debug.toolbar:handle" (filter)
2011-03-18T14:08:52+08:00 DEBUG: Notified event "core.request" to listener "request_listener:handle" (notifyUntil)
2011-03-18T14:08:53+08:00 INFO: Matched route "_security_login" (parameters: {"_controller":"fos_user.controller.security:loginAction","_route":"_security_login"})
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.request" to listener "profiler_listener:handleRequest" (notifyUntil)
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.request" to listener "security.firewall:handle" (notifyUntil)
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.exception" to listener "profiler_listener:handleException" (notifyUntil)
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.exception" to listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" (notifyUntil)
2011-03-18T14:08:53+08:00 INFO: Authentication exception occurred; redirecting to authentication entry point (A Token was not found in the SecurityContext.)
2011-03-18T14:08:53+08:00 DEBUG: Calling Authentication entry point
2011-03-18T14:08:53+08:00 DEBUG: Listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" processed the event "core.exception"
2011-03-18T14:08:53+08:00 DEBUG: Listener "exception_listener:handle" was not called for event "core.exception"
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.response" to listener "response_listener:filter" (filter)
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.response" to listener "profiler_listener:handleResponse" (filter)
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.response" to listener "security.rememberme.response_listener:handle" (filter)
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::write" (filter)
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.response" to listener "debug.toolbar:handle" (filter)
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.request" to listener "request_listener:handle" (notifyUntil)
2011-03-18T14:08:53+08:00 INFO: Matched route "_security_login" (parameters: {"_controller":"fos_user.controller.security:loginAction","_route":"_security_login"})
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.request" to listener "profiler_listener:handleRequest" (notifyUntil)
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.request" to listener "security.firewall:handle" (notifyUntil)
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.exception" to listener "profiler_listener:handleException" (notifyUntil)
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.exception" to listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" (notifyUntil)
2011-03-18T14:08:53+08:00 INFO: Authentication exception occurred; redirecting to authentication entry point (A Token was not found in the SecurityContext.)
2011-03-18T14:08:53+08:00 DEBUG: Calling Authentication entry point
2011-03-18T14:08:53+08:00 DEBUG: Listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" processed the event "core.exception"
2011-03-18T14:08:53+08:00 DEBUG: Listener "exception_listener:handle" was not called for event "core.exception"
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.response" to listener "response_listener:filter" (filter)
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.response" to listener "profiler_listener:handleResponse" (filter)
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.response" to listener "security.rememberme.response_listener:handle" (filter)
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::write" (filter)
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.response" to listener "debug.toolbar:handle" (filter)
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.request" to listener "request_listener:handle" (notifyUntil)
2011-03-18T14:08:53+08:00 INFO: Matched route "_security_login" (parameters: {"_controller":"fos_user.controller.security:loginAction","_route":"_security_login"})
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.request" to listener "profiler_listener:handleRequest" (notifyUntil)
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.request" to listener "security.firewall:handle" (notifyUntil)
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.exception" to listener "profiler_listener:handleException" (notifyUntil)
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.exception" to listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" (notifyUntil)
2011-03-18T14:08:53+08:00 INFO: Authentication exception occurred; redirecting to authentication entry point (A Token was not found in the SecurityContext.)
2011-03-18T14:08:53+08:00 DEBUG: Calling Authentication entry point
2011-03-18T14:08:53+08:00 DEBUG: Listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" processed the event "core.exception"
2011-03-18T14:08:53+08:00 DEBUG: Listener "exception_listener:handle" was not called for event "core.exception"
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.response" to listener "response_listener:filter" (filter)
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.response" to listener "profiler_listener:handleResponse" (filter)
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.response" to listener "security.rememberme.response_listener:handle" (filter)
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::write" (filter)
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.response" to listener "debug.toolbar:handle" (filter)
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.request" to listener "request_listener:handle" (notifyUntil)
2011-03-18T14:08:53+08:00 INFO: Matched route "_security_login" (parameters: {"_controller":"fos_user.controller.security:loginAction","_route":"_security_login"})
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.request" to listener "profiler_listener:handleRequest" (notifyUntil)
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.request" to listener "security.firewall:handle" (notifyUntil)
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.exception" to listener "profiler_listener:handleException" (notifyUntil)
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.exception" to listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" (notifyUntil)
2011-03-18T14:08:53+08:00 INFO: Authentication exception occurred; redirecting to authentication entry point (A Token was not found in the SecurityContext.)
2011-03-18T14:08:53+08:00 DEBUG: Calling Authentication entry point
2011-03-18T14:08:53+08:00 DEBUG: Listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::handleException" processed the event "core.exception"
2011-03-18T14:08:53+08:00 DEBUG: Listener "exception_listener:handle" was not called for event "core.exception"
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.response" to listener "response_listener:filter" (filter)
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.response" to listener "profiler_listener:handleResponse" (filter)
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.response" to listener "security.rememberme.response_listener:handle" (filter)
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::write" (filter)
2011-03-18T14:08:53+08:00 DEBUG: Notified event "core.response" to listener "debug.toolbar:handle" (filter)

inheriting the app's base template

I tried to embed the UserBundle views into my application, by inserting this line at the top of the file FOS/UserBundle/Resources/views/layout.html.twig

{% extends '::base.html.twig' %}

Without any effect. That works with my own bundle- so I wonder why it does not work with FOSUserBundle.
Can you help me?

BR Stephan

doctrine generates additional private class properties in User class

hi there!

I have the feeling that this is actually no UserBundle specific problem, but it occured to me the first time in that context:

First I setup my UserClass:

use FOS\UserBundle\Entity\User as BaseUser;

/**

  • @orm:Entity
    /
    class User extends BaseUser
    {
    /
    *

    • @orm:Id
    • @orm:Column(type="integer")
    • @orm:generatedValue(strategy="AUTO")
      */
      protected $id;

    /**

    • @orm:ManyToMany(targetEntity="FOS\UserBundle\Entity\DefaultGroup")
    • @orm:JoinTable(name="fos_user_user_group",
    •  joinColumns={@orm:JoinColumn(name="user_id", referencedColumnName="id")},
      
    •  inverseJoinColumns={@orm:JoinColumn(name="group_id", referencedColumnName="id")}
      
    • )
      */
      protected $groups;

}

After runníng:

php app/console doctrine:generate:entities AjadoEventHubBundle

my class looks like that:

/** \* @orm:Id \* @orm:Column(type="integer") \* @orm:generatedValue(strategy="AUTO") */ protected $id;
/**
 * @orm:ManyToMany(targetEntity="FOS\UserBundle\Entity\DefaultGroup")
 * @orm:JoinTable(name="fos_user_user_group",
 *      joinColumns={@orm:JoinColumn(name="user_id", referencedColumnName="id")},
 *      inverseJoinColumns={@orm:JoinColumn(name="group_id", referencedColumnName="id")}
 * )
 */
protected $groups;


/**
 * @var integer $id
 */
private $id;

/**
 * @var FOS\UserBundle\Entity\DefaultGroup
 */
private $groups;

...

(the id property exists twice now)

any ideas on that?

BR Stephan

Unique validator doesnt work when updating Username

Hi

The unique validator doesnt work when updating the username. It validates the record if a duplicate record is found that is the same as the one being validated, but it does this by checking if the username is the same, so it doesnt work ...

Changing the UserManager::anyIsUser method to check on the Id instead of the User::isUser method fixes it for me.

Translations

I'd like to translate the FOS/UserBundle contribute the translations back to the project. What's the preferred format? XML, YAML or PHP? My favourite is YAML, but I'd like the translation files to be useful to other persons as well.

Id in Group entity

After be7bdbe I'm getting error No identifier/primary key specified for Entity 'Bundle\FOS\UserBundle\Entity\Group'.

What should I do to provide id mapping?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.