brandonc503 Posted September 28, 2010 Share Posted September 28, 2010 id like to find the code that requires employees to login to the back office. like the following code is used to make users login to front office pages if (!$cookie->isLogged()) Tools::redirect('authentication.php?back=my-account.php'); Link to comment Share on other sites More sharing options...
rocky Posted September 29, 2010 Share Posted September 29, 2010 It's lines 33-35 of admin/init.php that checked whether an employee is logged in: /* logged or not */ if (!$cookie->isLoggedBack()) Tools::redirectLink('login.php'.$url_redirect); Link to comment Share on other sites More sharing options...
brandonc503 Posted September 30, 2010 Author Share Posted September 30, 2010 K but if i place that in the category.php it does not have the desired effects Link to comment Share on other sites More sharing options...
Recommended Posts