You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What is the default user access info in the frontend and backend?
What is the username and password?
What is the source of user information or where will I add new users?
What is the data structure/schema of user information?
What are the necessary steps for the user login to be worked?
The text was updated successfully, but these errors were encountered:
/frontend/componentes/Controller.php and /backend/componentes/Controller.php
public function filters()
{
return array( 'accessControl' ); // perform access control
}
public function accessRules()
{
return array(
// logged in users can do whatever they want to
array('allow', 'users' => array('@')),
// not logged in users can't do anything except above
array('deny'),
);
}
With that all controllers will allow actions are taken only by
authenticated users.
What is the default user access info in the frontend and backend?
What is the username and password?
What is the source of user information or where will I add new users?
What is the data structure/schema of user information?
What are the necessary steps for the user login to be worked?
The text was updated successfully, but these errors were encountered: