Welcome Guest, Not a member yet? Register   Sign In
redirect not working
#3

this is my htaccess :
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteCond $1 !^(index\.php|images|img|js|sexyimages|media|roleimages|lang|uploads|files|profile|audio|video|videoplayer|talentimages|captcha|gmap|timthumb|include|ckeditor|webfonts|player|robots\.txt|css|sitemap\.xml|sitemap\.html|BingSiteAuth\.xml)
RewriteRule ^(.*)$ ./index.php/$1 [L]

</IfModule>

and this is my admin login code
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class Home extends CI_Controller {



function __construct()
{
// Call the Model constructor
parent::__construct();
$this->load->model('admin/adminloginmodel','', TRUE);
$this->load->library('session');
}

public function index()
{
//$objResponse=new xajaxResponse();
$this->load->helper('url');
$data['msg']= '';
if(isset($_POST['submit']))
{

$msg=$this->adminloginmodel->check_adminlogin();
//echo $msg;
if($msg != 'success')
{
//redirect('admin/dashboard', 'refresh');
$data['msg']= $msg;
}
else
{
redirect(site_url('admin/dashboard'));

}

}

$this->load->view('admin/adminhome_view',$data);
}
}

/* End of file home.php */
/* Location: ./application/controllers/home.php */
Reply


Messages In This Thread
redirect not working - by hadeel - 12-08-2014, 02:19 AM
RE: redirect not working - by sv3tli0 - 12-08-2014, 02:42 AM
RE: redirect not working - by hadeel - 12-08-2014, 02:44 AM
RE: redirect not working - by InsiteFX - 12-08-2014, 04:44 AM
RE: redirect not working - by hadeel - 12-08-2014, 04:57 AM
RE: redirect not working - by Avenirer - 12-08-2014, 08:11 AM
RE: redirect not working - by hadeel - 12-08-2014, 01:09 PM
RE: redirect not working - by Dracula - 12-09-2014, 05:55 AM
RE: redirect not working - by satti - 07-07-2019, 11:16 AM
RE: redirect not working - by Andryshok - 07-07-2019, 11:46 AM
RE: redirect not working - by hadeel - 12-10-2014, 03:19 AM
RE: redirect not working - by Rufnex - 12-11-2014, 02:42 PM
RE: redirect not working - by satti - 07-07-2019, 12:05 PM



Theme © iAndrew 2016 - Forum software by © MyBB