Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I found a blank page after login while same code working in other contriller. I think session not working so that redirect also not working i'm using this code for session and rediction

$this->Session->write('Adm.id', $result['Adm']['id']);
$this->redirect(array('controller' => 'Adms', 'action' => 'home'));
share|improve this question
check if there is any error on your home action which is causing cake to render a blank page. – huzefam Dec 8 '12 at 7:39

2 Answers

Something that commonly blocks sessions and will cause a blank page is the write permissions where the session is writing. If you are using files for session management, check the permissions on the directory where your session data is being written.

share|improve this answer

I had the same bug. Check your AppController and others Controller (and the models) :

  • look for an empty line at the end of your file

Not good :

Line 1  class UsersController extends AppController {
Line 2     //your code
Line 9  }
Line 10 *Delete this line*
share|improve this answer
you can have 10k blank lines after a class if you like, just don't use ?> in php files. – dogmatic69 Dec 20 '12 at 8:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.