Thread: Blank Page
View Single Post
  #2 (permalink)  
Old 04-11-2008, 04:30 PM
Elemental's Avatar
Elemental Elemental is offline
Senior Member
 
Join Date: Jul 2007
Posts: 119
Default

Post your bootstrap. Most common reason for this that I have seen is failure to dispatch the front controller:
Code:
$front->dispatch();
You might want to set the front controller to throw exceptions as well.
Code:
error_reporting(E_ALL|E_STRICT);
ini_set('display_errors',true);

.
.
.

$front->throwExceptions(true);
Reply With Quote