SelfMan píše:Bedo aka je struktura SID ulozeneho na serveri? Mam este trochu podozrenie na to, ze ked sa inicializuje session, tak nepracuje korektne s informaciami z cookies.
Jestli jsem dobre hledal, tak by se tam melo zapisovat toto

- Kód: Vybrat vše
// Create or update the session
$sql_ary = array(
'session_user_id' => (int) $this->data['user_id'],
'session_start' => (int) $this->time_now,
'session_last_visit' => (int) $this->data['session_last_visit'],
'session_time' => (int) $this->time_now,
'session_browser' => (string) trim(substr($this->browser, 0, 149)),
'session_forwarded_for' => (string) $this->forwarded_for,
'session_ip' => (string) $this->ip,
'session_autologin' => ($session_autologin) ? 1 : 0,
'session_admin' => ($set_admin) ? 1 : 0,
'session_viewonline' => ($viewonline) ? 1 : 0,
);