I've been working on this site as a final project for my degree and everything has been working wonderfully up until today. Suddenly, without warning, the auth controller just stopped working. I've been trying to figure out why but I can't seem to pinpoint the exact problem.
This is what I have figured out so far:
- Auth was working perfectly until two hours ago, in which the user can not log in or register
- Debugging $this->Auth->login() returns an empty array. Debugging $this->data also returns an empty array
- Users can not register. Every time I try to register an account, it kicks back to the login screen. The mySQL database does not reflect any newly added users
- My core, userscontroller, and appcontrollers were not altered. My models were also not altered
So, in an nutshell no data is being sent to the sql server. I was simply "kicked" out of my session and now unable to log back in.
I am honestly drawing a blank. Since I am not hosting this project locally but with my host, I can not see the activity or if anything is currently going on the server. I am also a beginner with cakePHP and learning as I go along with this project. This has certainly put a wrench in my project because I can't figure out wtf is going on.
My UsersController.php
public function beforeFilter(){
parent::beforeFilter();
$this->Auth->allow('register', 'logout', 'login');
}
public function register(){
if ($this->request->is('post')) {
$this->User->create();
if ($this->User->save($this->request->data)) {
$this->Session->setFlash(__('Successfully registered! Now start collecting swag!'));
$this->redirect(array('action' => 'login'));
$this->Auth->login();
$this->redirect(array('action' => 'myprofile'));
} else {
$this->Session->setFlash(__('Something went wrong. Please, try again.'));
}
}
}
public function login() {
if($this->Auth->login()){
$this->redirect($this->Auth->redirect());
}else{
$this->Session->setFlash(__('Wrong Username and/or Password entered. Try again'));
echo debug($this->data);
}
}
My AppController.php
public $components = array(
'Session',
'Auth' => array(
'loginRedirect' => array('controller' => 'users', 'action' => 'myprofile'),
'logoutRedirect' => array('controller' => 'home', 'action' => 'index'),
),
);
public function beforeFilter() {
$this->Auth->authError = "Sorry, you must log in before you can continue.";
$this->Auth->allow('index', 'view', 'swags', 'login', 'logout');
$this->set('user', $this->Auth->user());
}
I just can't figure out and I can't find anything on my Google searches. I hope its just my host just acting up and not cake itself. If anyone has any idea, thanks!