Я создаю систему входа в систему с помощью Ion Auth. У меня есть этот код:
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Main extends CI_Controller {
function __construct() {
parent::__construct();
$this->load->library( array( 'ion_auth' ) );
}
public function index()
{
$this->load->view( 'templates/main/header' );
$this->load->view( 'templates/main/navigation' );
$this->load->view( 'Home' );
$this->load->view( 'templates/main/footer' );
} // END: index()
public function logowanie()
{
$data = $this->data['title'] = "Login";
$this->load->view( 'templates/main/header', $data );
$this->load->view( 'logowanie' );
$this->load->view( 'templates/main/footer' );
if ( isset($_POST) ) {
$login = $this->input->post( 'username' );
$password = $this->input->post( 'password' );
$login_process = $this->ion_auth->login( $login, $password );
if ( $login_process ) {
redirect( 'panel' );
} else {
redirect( 'main/logowanie' );
}
}
} // END: logowanie()
public function logout()
{
$logout = $this->ion_auth->logout();
redirect('/', 'refresh');
}} // END: class Panel
И я получаю ошибку: «Слишком много перенаправлений»
Зачем?
Вы можете изменить этот код:
if ( $login_process ) {
redirect( 'panel' );
} else {
redirect( 'main/logowanie' );
}
от
if ( $login_process ) {
$redirect_var = 'panel';
} else {
$redirect_var = 'main/logowanie';
} redirect($redirect_var);
Других решений пока нет …