Love Fuel?    Donate

FuelPHP Forums

Ask your question about FuelPHP in the appropriate forum, or help others by answering their questions.
Why is profile_fields empty in database?
  • 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? 
  • 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.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

In this Discussion