I am breaking my 2.0 virginity on a simple little app. I have a Pages/
home.ctp view displaying nicely, using elements, components, helpers
and all those good things. core.php had the default session
configuration:

Configure::write('Session', array(
        'defaults' => 'php'
));

I created the cake_sessions database table and flipped over to using
database sessions:

Configure::write('Session', array(
        'defaults' => 'database'
));

Now nothing renders and I get a white screen even when debug = 2. I
can die(debug()) a message in the view, but after that it all goes
dark (or light). The lights come on again if I change back to PHP
sessions.

Any pointers?

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


To unsubscribe from this group, send email to
[email protected] For more options, visit this group at 
http://groups.google.com/group/cake-php

Reply via email to