Page 1 of 1

Interesting problem

PostPosted: Thu Feb 26, 2009 8:49 pm
by msergent
For some reason periodically I keep on receiving a blank screen instead of a list of records. The only way I can get the records to display is to delete all of the cached objects. Problem seems to affect IE and Firefox browsers.

Does anyone have an idea on what might cause this bazaar behavior?

PostPosted: Fri Feb 27, 2009 8:28 am
by shannah
A white screen generally means a fatal error. Check your error log. My best guess is that its exceeding the memory limit. Try adding
ini_set('memory_limit', '32M');
at the beginning of your index.php file.

But also check your error log.
See http://xataface.com/wiki/Troubleshooting for troubleshooting information.

PostPosted: Wed Mar 04, 2009 9:57 pm
by msergent
The issue seems to happen when a new record is added via the php-web form or after editing a record. If I launch a new browser (IE, Firefox) The page displays correctly for a short while. Only clearing the cache seems to temporarily fix the problem. However, when using Opera I don't appear to have the problem.

So it seems that it is more related to the browsers interaction with the xataface application.

The PHP error logs were clean with no errors logged.

PostPosted: Thu Mar 05, 2009 9:24 am
by shannah
Make sure that error reporting is on. Try adding the following to your index.php file beginning:

Code: Select all
error_reporting(E_ALL);
ini_set('display_errors','on');