Love Fuel?
Donate
About
Forums
Discussions
Login
About
Forums
Discussions
Login
FuelPHP Forums
Ask your question about FuelPHP in the appropriate forum, or help others by answering their questions.
General
Why is profile_fields empty in database?
prathana
November 2013
I am using simpleauth to create user. My code is like:
$username = Input::post('username');
$fullname = Input::post('fullname');
$email = Input::post('email');
$password = Input::post('pass');
$auth = Auth::instance();
$user = $auth->create_user($username,$password,$email,array('fullname' => $fullname) );
When I check my database, profile_fields has value a:():{}
while i assume it should have some value. Where did i go wrong?
prathana
November 2013
Solved. I had set default value of group=1 in Model_User so didn't pass it in create_user(). Just realized that i need to pass it in create_user() as well.
Add a Comment
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Apply for Membership
Categories
All Discussions
5,090
General
↳ General
3,364
↳ Job Board
13
↳ Installation & Setup
214
Packages
↳ Oil
213
↳ Orm
700
↳ Auth
262
Development
↳ Tips and Tutorials
126
↳ Code share
145
↳ Applications
52
In this Discussion
prathana
November 2013
To Top