vote up 1 vote down star

Hello everyone,

Is it possible in cakephp that a user be registered automatically with a predefined set of inputs (username, password and all that...) provided by the programmer.?

I want to register a user automatically whenever he tries to enter/access a member's restricted area.

Please help me achieve this functionality.

Using cakephp v1.2, xampp

Thanks...

flag

76% accept rate

2 Answers

vote up 1 vote down check

:)

Found the answer, :)

I simply assigned

'$this->data'

some values by myself like this

$this->data['User']['password'] = "test";
$this->data['User']['email'] = "test@email.com";
$this->data['User']['password'] = "Registered";

and then the add action did it's work accordingly..

link|flag
vote up 1 vote down

This sounds weird. Why not just prompt for a username and password, then check to see if the user exists. If the user exists, try to authenticate them. If not, create an account with the credentials provided. Would that not work?

link|flag
actually it is also a facebook application, and I don't want that the visitors of my facebook application are prompted to register separately for this app, that is why I needed to register a new account whenever a new user access the member's restricted area.. I hope I made myself clear,.. :-) – Gaurav Sharma Jul 24 at 18:06
1  
In that case, I'd use Facebook Connect. – inkedmn Jul 24 at 20:10
yes, :-) actually the below trick worked too but not as that efficiently as facebook connect. Found a very nice tutorial (cutfromthenorth.com/integrating-facebook-connect-…) on integrating facebook connect with the auth component of cakephp. – Gaurav Sharma Jul 29 at 6:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.