我的网站有一些问题需要解决,但首先是用户的注销功能。
/* FUNCTION: Logout set */
function logout()
{
$appid = $this->db->get_where('general_settings', array(
'type' => 'fb_appid'
))->row()->value;
$secret = $this->db->get_where('general_settings', array(
'type' => 'fb_secret'
))->row()->value;
$config = array(
'appId' => $appid,
'secret' => $secret
);
$this->load->library('Facebook', $config);
$this->facebook->destroySession();
$this->session->sess_destroy();
redirect(base_url() . 'index.php/home/logged_out', 'refresh');
}
/* FUNCTION: Logout */
function logged_out()
{
$this->session->set_flashdata('alert', 'successful_signout');
redirect(base_url() . 'index.php/home/', 'refresh');
}
它重定向到index.php / home / logout,并没有按原样重定向到index.php / home,它只是在注销时保持空白页
答案 0 :(得分:0)
只需删除用于登录的facebook api即可...简单的解决方案始终有效>:|