Details Viewer blank

2 posts by 2 authors in: Forums > CMS Builder
Last Post: November 25, 2008   (RSS)

Re: [s2smedia] Details Viewer blank

By Dave - November 25, 2008

If the page is completely blank, even when you view source, it usually because there is a PHP error and PHP error reporting is turned off.

Try adding this to the very top of your page:

<?php
// enable error reporting
if (!defined('E_STRICT')) { define('E_STRICT', 2048); } // define E_STRICT for PHP < 5
error_reporting(E_ALL | E_STRICT); // display all errors
ini_set('display_errors', '1');
ini_set('display_startup_errors', '1');
?>


If that doesn't work feel free to email me FTP login details and the url to the page and I can take a look. Email dave@interactivetools.com (don't post login details to the forum).
Dave Edis - Senior Developer
interactivetools.com