Welcome Guest, Not a member yet? Register   Sign In
redirect() returns blank page in live server but works in localhost
#1

(This post was last modified: 11-08-2019, 05:37 PM by xlaws27.)

i think i have tried all the solution in stackoverflow&ci forum but still, i cant make it work. i have no problem storing sessions and if i manually type the url i dont encounter any problems at all but when using redirect() in live server it doesnt work at all . it returns blank page and i am still at the current page/url

public
 function __construct() {
        parent::__construct();
        
        date_default_timezone_set("Asia/Kolkata");
        $this->load->model('AdminLogin_model');
        $this->load->model('Settings_model');
        $this->load->library('session');

        if($this->session->userdata('logged_in_admin')) { 
            redirect(base_url().'Bus_details/view_busdetails');
        }
    }


on autoload.php
$autoload['helper'] = array('url','pis');
Reply
#2

PHP Code:
redirect('Bus_details/view_busdetails''refresh'); 

You don't use base_url() in a redirect.
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply




Theme © iAndrew 2016 - Forum software by © MyBB