Welcome Guest, Not a member yet? Register   Sign In
Restricted access in the directory back_end
#1

[eluser]soprabaixar1[/eluser]
The system is divided into front end and back end, and the back end is in the folder called "back_end." For example:

/controllers/back_end/controller_1.php
/model/back_end/Model_1.php
/view/back_end/view_1.php

Access for all model, controllers and views of the directory and subdirectories "back_end" is need to check if the User to be logged.

So I created a librarie and added in the autoload.php and doing just a simple test:


Code:
function __construct()
{        
  $CI =& get_instance();
  
   if (($CI->uri->segment(1) == 'back_end') AND (!$CI->session->userdata('logged_in'))) {
       redirect(base_url().'back_end/login/');
   }
}

But is not working right, anyone know why?


Messages In This Thread
Restricted access in the directory back_end - by El Forum - 11-13-2011, 06:42 AM



Theme © iAndrew 2016 - Forum software by © MyBB