Welcome Guest, Not a member yet? Register   Sign In
Session problem when trying to login through VirtualBox
#3

[eluser]Unknown[/eluser]
[quote author="Hudson Pereira" date="1344530121"]could you post your code here?[/quote]

Well, seeing how it's only a problem on Virtual Box, I assume there's not anything wrong with my code?
But here it is.
It enters process_login fine and it redirects to the home/index controller, but when it gets there userdata('username') is not set and it redirects back to the login page.

Code:
function process_login()
  {
   if($this->login_check($this->input->post('username'),$this->input->post('password')))
   {
    $user = $this->db->query("SELECT id, company0, company1, company2, company3, username, password,
    firstname, lastname, admin_settings, admin_messages, admin_cal, admin_margins,
    admin_statistics, admin_pricelists, phone_home, phone_cell, email, browser, resolution, language, (SELECT country FROM company WHERE cID = company0) AS country FROM users2 WHERE username = '".$this->input->post('username')."'");
    $user_result = $user->row();
    $userdata = array(
    'id' => $user_result->id,
    'company0' => $user_result->company0,
    'company1' => $user_result->company1,
    'company2' => $user_result->company2,
    'company3' => $user_result->company3,
    'username' => $user_result->username,
    'password' => $user_result->password,
    'firstname' => $user_result->firstname,
    'lastname' => $user_result->lastname,
    'admin_settings' => $user_result->admin_settings,
    'admin_messages' => $user_result->admin_messages,
    'admin_cal' => $user_result->admin_cal,
    'admin_margins' => $user_result->admin_margins,
    'admin_statistics' => $user_result->admin_statistics,
    'admin_pricelists' => $user_result->admin_pricelists,
    'phone_home' => $user_result->phone_home,
    'phone_cell' => $user_result->phone_cell,
    'email' => $user_result->email,
    'browser' => $user_result->browser,
    'resolution' => $user_result->resolution,
    'language' => $user_result->language,
    'country' => $user_result->country
    );
    $this->session->set_userdata($userdata);
    redirect('/home/index/');
    //echo $this->db->last_query();exit()
   }
   else
   {
    $this->login_model->log_failed_attempt();
    sleep(1);
    redirect('/login/index/failed');
   }
  }
  
  function login_check($username, $password)
  {
    $query = $this->db->query("SELECT * FROM users2 WHERE username = '$username' AND password = '$password'");
    if($query->num_rows() > 0)
     return TRUE;
    else
     return FALSE;
  }

And this is the check I do in Home controller
Code:
if(!$this->session->userdata('username'))
    redirect('/login/index/');


Messages In This Thread
Session problem when trying to login through VirtualBox - by El Forum - 08-07-2012, 11:40 PM
Session problem when trying to login through VirtualBox - by El Forum - 08-09-2012, 09:35 AM
Session problem when trying to login through VirtualBox - by El Forum - 08-09-2012, 10:48 PM



Theme © iAndrew 2016 - Forum software by © MyBB