Tagged Questions

sfGuard is a Symfony plugin that implements a user management and login system for an application. It supports both groups and individual users.

learn more… | top users | synonyms

8
votes
2answers
269 views

Sending POST Request to Secured Action

I have an action that takes POST data secured by sfGuard. This means that if the user is not logged in, the POST data will be sent to the log in form. Ordinarily, this is not a problem, the user ...
6
votes
4answers
469 views

sfguard bundle for symfony2

There is a bundle for (Propel) for symfony2,is there sfguard bundle for symfony2
4
votes
2answers
1k views

Multiple apps, single login?

My symfony project is divided into several apps. Using the sfDoctrineGuard plugin I'd like to create another app just for login, and redirect to the appropriate app after login. Is this advisable or ...
3
votes
2answers
527 views

Separate frontend and backend users with sfDoctrineGuardPlugin

i'm starting a project adn i'm using symfony, my first time with symfony, really great actually, i already install the sfDoctrineGuardPlugin and everything is ok untill now, why?, because frontend ...
3
votes
1answer
463 views

How do I invoke a custom function on sfGuard session time out in symfony

I am using sfGuard as the authentication plugin in my project. I want to invoke certain client side & server side scripts on session timeout. What is the best way I can do this. Please help! ...
2
votes
1answer
63 views

sfDoctrineGuardPluggin rehashes the password from fixture after data-dump

I have s symfony 1.4 with Doctrine and sfDoctrineGuardPlugin. I am experiencing a problem with loading fixtures for sfGuardUser which are made from symfony doctrine:data-dump The core of the ...
2
votes
2answers
2k views

How to create a custom login for sfGuard user in Symfony?

I am using Symfony 1.4 and ORM as Propel in my project. I have configured the Settings.yml to secure my page. But can i make a custom login/logout by my action extending all the SfGuard plugins ...
2
votes
2answers
782 views

symfony override BaseForm class howto

I've installed the sfDoctrineGuard plugin. Everything is working, I can use the /sf_guard_user/edit/:id page to edit a user. I didn't like the way the permissions were listed as a select list, I ...
2
votes
2answers
2k views

sfDoctrineGuard - how to ALWAYS join sfGuardProfile to sfGuardUser

I want to make it so that anytime the db is queried for an sfGuardUserProfile it is autmoatically joined and hydrated with its related sfGuardUser. If i was using Propel 1.2 i would normally override ...
2
votes
6answers
4k views

Symfony 1.4: Custom error message for CSRF in forms

Can anyone tell me where/how to customise the CSRF token error message for forms in Symfony 1.4. I'm using sfDoctrineGuard for logins and in this form particularly, whenever a session runs out and you ...
1
vote
0answers
133 views

Symfony sfGuardUserPlugin - check password for any user

How can I check any user's password in Symfony? (not only the logged in user) (I use sfGuardPlugin) I've tried like this, but doesn't work: $user = Doctrine::getTable('sfGuardUser')->find(26); ...
1
vote
2answers
116 views

Securing a whole Controller in Symfony with sfGuard?

I was looking at the Documents for sfGuard and Symfony about the security. But I cannot find anywhere about secure a whole Controller. There is only called action Secure. I tried to use the ...
1
vote
1answer
72 views

Passing Delete Method Through sfGuard

I have an application with people and groups in Symfony, where a person may have a membership with multiple groups. To remove a person from a group, I currently have an action in a 'groupMembers' ...
1
vote
3answers
203 views

Symfony sfGuardPlugin: disable default routes

/Hi all, I'm using the sfGuardPlugin in symfony 1.4 and I'm wondering how to get rid of its "default" routes. I mean by that the "guard/users", "guard/permissions" and "guard/groups" routes. Indeed ...
1
vote
2answers
361 views

How do I get the Session ID in a Symfony action?

I'm using Symfony 1.4 and Doctrine 1.2. I need to get the session ID inside an action. I'm using doctrine session storage and that works fine. I'm also using sfDoctrineGuardPlugin and am able to ...
1
vote
1answer
85 views

Symfony : how can i add a post validator without overriding the existing ones?

I'm using sfGuard plugin, and the register form by default has a few post validators (for username and email). I googled alot and haven't found any methods/hacks for adding post validators without ...
1
vote
2answers
230 views

set username equal to email_address in sfDoctrineGuardPlugin

in the table sf_guard_user, the email_address and username are requiered, but i want to use the email as username so, i'm thinking to remove one of this field from the form, but as it are required, i ...
1
vote
1answer
768 views

Custom sfGuard login redirect not working in symfony

I am using Symfony 1.4.8 and Propel as ORM. I have created a custom Sfguard login by creating a SfGuardAuth. I have created a login form in some pages which are not secure(i.e which are public) and ...
1
vote
2answers
390 views

allow users to change their own password, email and Profile

I'm creating my own blog engine to learn Symfony, and I have a question : I can add and edit users thanks to the sfGuardUser module, but how can I allow users to edit only their reccord ? Users ...
1
vote
1answer
442 views

Auto-generate field value on sfGuardUser when registering

I'm building a Symfony 1.4 project that is using sfDoctrineGuardPlugin for users/authentication. I have a field on my user table named "access_token" that I would like to populate with an ...
1
vote
1answer
408 views

Authenticate with sfguarduser without http login

I'm trying to develop a webservice in a symfony based application, we are using a sfguarduser plugin, and i want to get user credentials authenticated in a single shot request to check user ...
1
vote
2answers
394 views

symfony sfGuardUser hasCrendential live after update

I'm using symfony 1.4 and the sfGuardDoctrinePlugin, I've got it installed and setup fine but I have the following problem: If I login as an admin and update the permissions for a user, that user ...
1
vote
2answers
461 views

auth problems (security filters) in sfGuardUser Symfony

I'm using Symfony 1.2.7, and sfGuardUser Plugin. I'm able to view all the pages, login and logout. However when I try to edit (just going to the form) or update an object (saving the changes) ...
1
vote
2answers
2k views

Symfony sfDoctrineGuard plugin sfGuardUser module

When using sfDoctrineGuard plugin, it automatically generates the backend administration functionality where I can edit users of the system and assign them permissions. So I visit ...
1
vote
3answers
2k views

Symfony sfGuardPlugin session inconsistencies

Ok I have several modules in my application in symfony. I have only one module that is secure: on. I also have a layout.php that on top includes a tabbed menu to display links for each module in my ...
1
vote
2answers
2k views

How to add users to sfguard

I'm using symfony 1.2 with sfguard 1.4.1. What's the best practice for registering a new user on the system?
0
votes
1answer
20 views

Symfony 1.4 sfguard plugin related tables

I am developing project with symfony 1.4 using sfguard plugin and propel orm. I have some tables related to sf_guard_user table. I have to show these tables all together on admin interface. But ...
0
votes
1answer
41 views

Dynamically bind component to connection

I have a symfony web site that can be browsed in two different contexts. I mean contexts, not applications (I use ysfDimensionsPlugin). In the first context, I authenticate the users using sfGuard ...
0
votes
2answers
52 views

validate user credentials with sfGuard

I use symfony 1.4 with sfGuard with Propel, and considering that this is my first symfony experience, I'm still a total noob with some part of the architecture. I was asked to create some ...
0
votes
2answers
66 views

Lost sfGuard Admin Password - Need to reset

I've inherited a Symfony project (which I actually worked on a while ago) and need to reset the password to login to the back-end. I have access to the MySQL database. I've tried concatenating the ...
0
votes
2answers
143 views

symfony 1.4 session without using cookies

I have a Symfony application which use a mysql database to store session data, and uses the SfGuard plugin to manage the authentication. Despite that symfony allways save the authentication info in a ...
0
votes
2answers
43 views

Symfony - how to deal with credentials that contain spaces in security.yml?

Seems like a simple issue, but I can't find the proper reference. I have a system that has some permissions that have spaces in them: contract admin I need to secure an action, so in security.yml ...
0
votes
1answer
57 views

symfony drop down with sfguardusers from a specific group

Using sfguard and doctrine I have the following groups: Managers Chefs Waiters I have a module for receipts and in the form I want to select a waiter. The default ReceiptForm.class.php populates the ...
0
votes
1answer
92 views

Symfony: Most efficient way of getting list of sfGuardPermissions and sfGuardGroups that have them

I'm working on a custom admin interface for managing sfGuardGroupPermission records, basically allowing the user to grant/remove permissions for all user groups across the system in one interface. ...
0
votes
1answer
95 views

Uploading an avatar with symfony always null

I have been trying for like two days, everytime i upload an image, in the database i get null in avatar column and it's not even uploaded! i'm using symfony 1.4 i have both sfdoctrineguard and ...
0
votes
0answers
169 views

Symfony, Propel, sfGuardPlugin - SQL INSERT fails

Recently I did introduce small changes in my sfGuardUserProfile model: added a decimal(7,2) and yet another foreign key to sfGuardUser. Code is working perfectly everywhere I need it. It seems ...
0
votes
1answer
234 views

Symfony 1.4/doctrine/sfGuard schema.yml Using sfDoctringGuardPlugin's sfGuardGroup table in a many to many relation

am using the sfGuardPlugin and especially the sfGuardGroup table that am using in a many-to-many relation with a "monitor" table (the many to many table is called ALERT): here is my schema.yml: ...
0
votes
1answer
76 views

sfGuardGroup and i18n

I use symfony 1.4.11 with Doctrine. I have site, and it has 3 languages. I use sfDoctrineGuardPlugin 4.0.1 , and I have 3 groups of users. In site I show to each user his group, and I need it show to ...
0
votes
1answer
75 views

sfGuard and propel pager

I would like to be able to user sfPropelPager with sfGuard's user table. I can do the following just fine: $c = new Criteria(); $c->addAscendingOrderByColumn(sfGuardUserPeer::CREATED_AT); ...
0
votes
1answer
71 views

Integrating CAS and Symfony sfGuard?

I'm trying to integrate CAS and sfDoctrineGuard. I want my login and logout to be controlled by CAS, which works perfectly with the sfCASPlugin: http://www.symfony-project.org/plugins/sfCasPlugin ...
0
votes
1answer
158 views

How to force login with sfGuard?

Does anyone have any of how to force a login action with sfGuard through code? Something like: $this->authenticate('username'); ? Thanks in advance.
0
votes
1answer
81 views

how can i get ID in sfDoctrineGuardPlugin?

I was creating its own login system, but all recommmended sfDoctrineGuardPlugin. unfortunately I dont understand this... I go to http://localhost/frontend_dev.php/login and i logged in. i am in class ...
0
votes
2answers
109 views

sfGuard custom algorithm_callable

I am trying to make custom algorithm for password hashing. I try to do this. In app.cfg: sf_guard_plugin: algorithm_callable: [Hlp, noHash] In apps/frontend/lib/Hlp.php: class Hlp { function ...
0
votes
1answer
75 views

take backup of sfguard users in symfony

We have created our project in Symfony 1.4 and ORM Propel. We have two Projects, one is the old, and another is new. Our old project was launched earlier this year and had many problems in it, and we ...
0
votes
1answer
97 views

sfSocialPlugin with sfDoctrineGuardUser

I use symfony 1.4.11 with sfDoctrineGuardUser 4.0.1 plugin and sfSocialPlugin So, I have next problem .Source of problem is sfSocialPlugin, and ...
0
votes
3answers
430 views

Backend sfGuardUser mudule

I use symfony 1.4.11 with Doctrine I have sfGuardUser module in backend. I have sfGuardUserProfile table. sfGuardUserProfile: connection: doctrine tableName: sf_guard_user_profile columns: ...
0
votes
1answer
231 views

[Symfony]--sfGuardPlugin--SignIn

I use symfony 1.4 In my index page, I have created some fields as login form. When using sfGuardPlugin, it generate automaticly its form. So, what I'm searching for is how to replace the default ...
0
votes
2answers
282 views

sfDoctrineGuardPlugin relations with sfDoctrineApplyPlugin (delete and create users)

I use symfony 1.4.11. I use sfDoctrineGuardPlugin and sfDoctrineApplyPlugin.All works fine, but... In my backend I have user list, where I can manage users.When I create new user from backend, his ...
0
votes
1answer
267 views

How to catch an id from sfUser?

I'm working with symfony 1.4 & i use sfDoctrineGuardPlugin as a tool for authentifications. I want to catch the Id of user in order te store it in my table. After a small research, I guess I ...
0
votes
1answer
89 views

set a default group to registered users with sfDoctrineGuard

i thought that this was going to be an easy move as what i'm trying to do sounds like, but i'm kind of new to symfony, but all i want is users who register in my web belongs to a group that is the one ...

1 2