doAuthPlugin icon indicating copy to clipboard operation
doAuthPlugin copied to clipboard

Symfony new authentication / user managemant system

Results 8 doAuthPlugin issues
Sort by recently updated
recently updated
newest added

Hi, when trying to create a new console user, database throw an error: ``` Integrity constraint violation: 19 user.email may not be NULL ``` I tought you'd like to know.

When i trying to access /register page it is showing following error,,, what to do??? Fatal error: Class 'BaseUserForm' not found in C:\my\plugins\doAuthPlugin\lib\form\doctrine\PluginUserForm.class.php on line 4

There is an error: Unexpected extra form field named "salt". Wouldn't it be better to generate salt automaticly out of the box instead putting it to register form?

doAuthRememberMeFilter.class.php uses a reference to an unexistant variabel $q. Suppose it was the query object to fetch the user-object. Replaced $q->fetchOne() with a reference tot the fetched user object

You should probably change this... form_tag('user/register'); ...to that: form_tag('@register'); ...in the registerSuccess.php of baseAuth module. Unless you do that, the template throws an exeption.

There is a warning at register action caused by 15 line in doAuthActions.class.php There is: $this->form->bind($request->getParameter('signin'), $request->getParameter('signin')) while the second parameter should be array of files. Changing this line to:...

In similar manner to pre-post methods (preSignIn, etc) would be nice to have a postSignOut for example, so i can clean my own namespace.

In PostgreSQL database, the word "user" is a reserved one. See http://www.postgresql.org/docs/8.4/interactive/sql-keywords-appendix.html. It's possible rename to something like doauth_user, so all tables can have a suffix?