Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error 310 (net::ERR_TOO_MANY_REDIRECTS):

What is this error:

Error 310 (net::ERR_TOO_MANY_REDIRECTS): There were too many redirects.

I use PHP CodeIgniter and library SimpleLoginSecure, this is my code:

if ($this->session->userdata('logged_in')) {
    redirect('admin/index');
}

How can I resolve this error?

Regards

like image 634
Kimberly Mullins Avatar asked Dec 28 '22 16:12

Kimberly Mullins


1 Answers

I'm guessing you get an infinite redirect loop: you get redirected to admin/index, this same code snippet is run again, redirecting to admin/index ad infinitum. You probably want to add a check to that snippet and only do the redirect if you're NOT on the admin/index page.

like image 113
Richard H Avatar answered Jan 05 '23 18:01

Richard H