Welcome, Guest. Register Now!
   
Mark Forums Read Mark Forums Read Mark Forums Read


Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 04-08-2008, 12:00 AM
Junior Member
 
Join Date: Jan 2008
Posts: 16
Default Blank Page

Has anyone had this problem with a site using Zend Framework.

A blank white page.

The problem appears at least once in 5-10 clicks.

In Live Http Headers (Mozilla Addon) I am receiving the this:

HTTP/1.x 200 OK

----------------------------------------------------------


There isn't anything in the log files of apache/php.

How could you possibly debug this ?

Thanks.

Slavi
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 04-11-2008, 04:30 PM
Elemental's Avatar
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);
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 04-11-2008, 08:15 PM
Junior Member
 
Join Date: Jan 2008
Posts: 16
Default

I always run with E_ALL on devel machine

For a page generation the script consumed about 6MB and that's why it was terminated by a watchdog script. The hosting is Dream Host

Slavi
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 12:09 AM.