The FOSUserBundle adds support for a database-backed user system in Symfony2. It provides a flexible framework for user management that aims to handle common tasks such as user registration and password retrieval.
0
votes
1answer
36 views
Custom FOSUserBundle Login Template using BootStrap
I've installed Symfony2, FOS User Bundle and Twitter Boot Strap.
Then I setup the /app/Resources/FOSUserBundle/views/layout.html.twig template to override FOSUserBundle to use my site template.
It ...
0
votes
0answers
20 views
How do I add dynamic fields on the profile edit page of the FOS bundle in Symfony 2?
I want to add a field on the profile edit page where the user can select his language. I have a languageBundle defined as a service. This service can give me the available languages. To change the ...
0
votes
1answer
17 views
FOSUserBundle, How include own stylesheet files?
I want change default style for login form in FOSUserBundle. In my bundle, in views/layout.html.twig I write this:
<!DOCTYPE html>
<html>
<head>
{% block stylesheets %}
<link ...
0
votes
0answers
16 views
symfony2/FOSUserBundle: Firewall doesn't work with debug=false (one security.yml, threee behaviours)
I have three environments in my symfony2/FOSUserBundle Project.
Each of them uses the exact same security.yml.
Now while my firewall is up and running on the DEV environment, the DEV_CACHE and PROD ...
0
votes
1answer
19 views
Symfony2 Error when overriding bundle template “resource is hidden by a resource”?
I'm trying to override a third party bundle's layout template with the layout of my bundle, by including the new layout in the app/Resources/ directory as indicated in the Symfony2 book section; ...
0
votes
1answer
31 views
FOSUserBundle : security context exception, even thou i have a default main firewall
I'm uasing symfony2 and FOSUserBundle.
I have one firewall for login, one for assets and a main one catching everything.
Still i get the "no security.context" Exception thrown when a route is not ...
0
votes
1answer
19 views
SonataAdminBundle doesn't logout after accessing dashboard
Maybe this is a silly question and I just don't get it, but I'm trying to use Sonata and FOSUserBundle with a custom provider, I have my admin users in "myapp/backbundle/Entity/Administrador" ...
0
votes
1answer
31 views
Registering user with FOSUserBundle without logging the user in
I'm trying to implement registeration with FOSUserBundle. I want an admin to be able register a new user and this I've done simply by changing registration to a firewalled route (/admin/register ...
0
votes
2answers
29 views
Symfony2 FOSUserBundle Error Summary
I'm using the Symfony2 FOSUserBundle and on the registration page, it puts inline errors beside the form elements that are in error, but I'd like to also display those errors in a summary at the top ...
1
vote
1answer
47 views
Sonata User - Security on custom field
I used SonataUser with FOSUser to manage my users and created a custom field company to attach each one to a given company.
Now I'd simply need to give users the ability to manage only users attached ...
0
votes
1answer
33 views
How to get userid from eventlistener which are called from AJAX
I am using symfony2 and FOSUserBundle.
Normally,I can get user data from Controller
$user = $this->get('security.context')->getToken()->getUser();
or
$user = ...
0
votes
1answer
22 views
FosUserBundle registration validation new image field
I am using FOSUserBundle and i have problem with validation user entity.
In my user entity i have:
/**
* @Assert\NotBlank()
* @Assert\File(
* maxSize="3M",
* mimeTypes={"image/png", ...
1
vote
2answers
31 views
Anonymous token even if logged in in public pages
I'm having some trouble setting my security.
I want a page to be accessible both by anonymous and by logged in members. I want it to show different content depending on the situation (in fact, i want ...
0
votes
1answer
36 views
Symfony2 form isValid doesn't work
My form Type:
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('email', 'email')
->add('username')
;
}
public function ...
0
votes
0answers
12 views
How to edit an Array field in “Sonata Admin” with Symfony2
With Symfony2, i use "FOSuserBundle". In my Entity "Group", i have an array column named "roles". this is "ArrayCollection" type. How to edit this field "roles" with Admin Generator like "Sonata ...
-2
votes
0answers
43 views
Don't fill password field in FOSUser profile form
Default FOSUser profile form requires filling of the passord field. Is there any way to skip?
Allow user to edit profile details without password.
Update:
Here's my controller code
$user = ...
-2
votes
0answers
20 views
Translation profile (label_profile_gender)
I'm having an annoying bug with the profile show.
I installed SonataUserBundle everything is working normally except for when i enter the link localhost/app_dev.php/profile for any authenticated user ...
1
vote
1answer
40 views
Overriding the FOSUserBundle controllers
So I read alot about the overriding of templates and such and overriding of bundles in Symfony.
I am using the new Symfony 2.3, I have not tried this in lower versions of Symfony.
I followed the ...
0
votes
0answers
60 views
Blank page in FOSUserBundle register
I just upgraded my Symfony 2.2.2 project to 2.3. I'm also using FOSUserBundle. This bundle works fine in project 2.2.2. but when I upgrade then route /user/register doesn't work anymore. Whole page is ...
0
votes
0answers
53 views
symfony2/fos-user-bundle: Bad credentials works if salt is emtpy in the user class but why?
I followed the install instructions for installing the fosUserBundle.
All works well.
With the command line I stored a user in the database
Login "demo" password "demo"
Unfortunatly i cant ...
1
vote
1answer
30 views
Properties of an entity in a different entity
I'm using FOSUserBundle to manage the users and the security. I also have a different table that carries all the metadata of the user, like the profile picture, facebook id, etc.
I need to tell ...
2
votes
2answers
51 views
Cannot get user from Security Context in test environment
I'm trying to test an API call method which is securized using Basic Auth and which needs to retrieve the user from the security context.
My config_test.yml file (I'm using in-memory database for ...
1
vote
0answers
44 views
Symfony2 /FOS call to undefined method on the user model
This is the error message I get when, for example, I go to the register url:
**Call to undefined method MyEntity::setEnabled() FOS\UserBundle\Controller\RegistrationController.php on line 44**
(FOS ...
0
votes
3answers
160 views
Symfony 2.2.1 fatal error on remote server (only)-why?
On the Symfony codebase mentioned in this question, after installing FOSUserBundle, it works locally, but on the remote server it doesn't even get to bootstrap, giving an HTTP 500 error page.
Edit: ...
1
vote
1answer
53 views
SonataUserBundle User entity doesn't map changes
I want to make the email field optional. I read that i need to use @AttributeOverrides annotation.
My Application\Sonata\UserBundle\Entity\User class:
namespace ...
1
vote
1answer
31 views
How can I generate salt and confirmation_token entries for migrated users with FOSUserBundle
I am resurrecting a website that has been down for a few years and I am migrating everything to Symfony2. I was able to get all of my old user database entries into the fos_user table. The only ...
0
votes
2answers
45 views
FOSFacebookBundle redirect after signup
In my symfony2 project I'm using the FOSFacebookBundle and it's working ok. If the fb user already exists on the DB the user is logged in, by another hand if the user is not registered yet, the user ...
0
votes
1answer
44 views
FOSUserBundle register without password
I am creating an application where visitors can upload some stuff (it will be for invited people only). At the end, if they are not logged in, they are asked to log in or create a user. If they create ...
1
vote
1answer
58 views
Fos UserBundle with yaml - doctrine schema update
I wanted to use FOSUserBundle, installed it and first set it up with annotations, but because I had other entities i choose yaml.
I did as it was written in the documentation, created the yaml file ...
1
vote
1answer
87 views
How to install SonataDoctrineMongoDBAdminBundle properly?
I am really getting nervous because of lacking of enough resource for installing SonataDoctrineMongoDBAdminBundle and it's dependencies like sonataUserBundle. I have been trying to install this bundle ...
0
votes
1answer
44 views
How to override FOSUserBundle/Doctrine/UserManager.php
I am integrating fileupload system with fosuserbundle
I need to override updateUser function
in
/vendor/friendsofsymfony/user-bundle/FOS/UserBundle/Doctrine/UserManager.php
I copied this file ...
0
votes
0answers
54 views
Session symfony 2.2 admingenerator fosuserbundle LOGS OUT
Well, since I upgraded my Symfony to 2.2 version something happened with FosUserBundle. Let me introduce you first what do I currently have. I'm using AdminGeneratorBundle connected with FosUserBundle ...
0
votes
1answer
74 views
FOSUserBundle - Change username validation
I was able to put some validation via @Assert on my custom fields, but now I am wondering how I could change the username validation for the FOSUserBundle? Since this field is generated automatically, ...
0
votes
1answer
40 views
FosUserBundle don't persist datas in mongodb database
I use symfony2 and the mongoDb ODM. Today I have installed FosUserBundle.
My User class is like that :
use FOS\UserBundle\Document\User as BaseUser;
use Doctrine\Common\Collections\ArrayCollection;
...
0
votes
0answers
39 views
FOSUserBundle doesn't translate with trans_default_domain
I am setting up FOSUserBundle dev-master with Symfony 2.3 RC1 but translation is not working well. It comes by default with trans_default_domain in the templates
In the login template. It doesn't ...
0
votes
1answer
33 views
symfony2: fosuserBundle -> determine roles when registering users
i am starting with symfony2 and fosUserBundle, and I get the following problem:
i have 2 kinds of users in my application (let say recruiters and job seekers. The recuiters can post job offers, and ...
0
votes
2answers
59 views
Non-existent service “fos_user.user_provider.username_email”
I am following the guide to install FOSUserBundle located at https://github.com/FriendsOfSymfony/FOSUserBundle/blob/master/Resources/doc/index.md
My security file:
security:
encoders:
...
0
votes
1answer
72 views
Best practice to allow access to owner user and admins only?
I'm programming a site in Symfony2, using FOSUserBundle for managing user access. I have an entity called "Site" which can have many Users. Only the related users and the admins should have access to ...
0
votes
2answers
28 views
Doctrine and FOSUserBundle - displaying users according to their roles
I need to be able to display all ROLE_ADMIN and ROLE_SUPER_ADMIN users in a paginated table. I have the table displaying everyone correctly using Doctrine's findBy() method, but I'm a bit stumped on ...
0
votes
0answers
79 views
FileLoaderLoadException, Cannot import resource … using FOSUserBundle
I use Symfony 2.2.1. and I'm trying to install FOSUserBundle. When I tried to create the database using php app/console doctrine:schema:create --force, the system display this error:
...
0
votes
0answers
24 views
How to make a OneToOne relationship with FOSUserBundle?
I want to separate User login credentials from user Profile, so I created a Profile Bundle to connect to FOSUser with a 1to1 relationship, so when a user register, a relation is made between the ...
1
vote
1answer
105 views
FOSUserBundle extend propel User
I'm using FOSUserBundle and Propel in a Symfony 2.2 project. I'm trying to extend the User class and add a new method to it like so:
namespace Acme\UserBundle\Model;
use FOS\UserBundle\Propel\User ...
1
vote
1answer
31 views
FOSUserBundle 1.3.1 => 2.0
I'm using 1.3.1 version of FOSUserBundle. I has upgraded symfony to 2.2 and I'm not sure about 1.3.1 compatibility so I want to upgrade the bundle as well, but I can't find any instructions of what I ...
1
vote
0answers
62 views
Sonata User Admin - Custom field dependency
I have extended the SonataAdmin class for FOSUser and added 2 custom fields (choice type from external data source): Company and Sector
I'd like to make Sector dependent on Company, so if the user ...
0
votes
1answer
52 views
Log in with email in symfony2 fosUserBundle
How can I enable login with email in symfony2 fosUserBundle? I tried this:
providers:
fos_userbundle:
id: fos_user.user_provider.username_email
But got an error saying the service ...
0
votes
0answers
23 views
Updating database using fos_userbundle
I'm using FosUser But when I try to executing doctrine:schema:update I have an exception:
The table with name 'Mytable_user' already exists.
0
votes
2answers
67 views
Getting the group_id by using Groups with FOSUserBundle
I have configured the FOSUserBundle Group follow Using Groups With FOSUserBundle and get it to work.
// src/SM4/UserBundle/Entity/User.php
/**
* ...
0
votes
1answer
18 views
How to specify entity to authenticate against
I'm using Symfony with FOSUserBundle for authentication. I think that by default it authenticates against an entity called User. I can't use that as it's already used for something else. What is the ...
0
votes
0answers
37 views
FosUserBundle : Best way to add another form after register form
I have several forms to complete the user registration of fosuserbundle.
I know it's possible to add some field in the user, but i want to add complete form with their proper twig vue and controller.
...
1
vote
1answer
308 views
FOSUserBundle : Redirect the user after register with EventListener
I want to redirect the user to another form just after registration, before he could access to anything on my website (like in https://github.com/FriendsOfSymfony/FOSUserBundle/issues/387).
So I ...



