Details Viewer blank

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

By s2smedia - November 25, 2008

I have set up a details viewer page... from what i see everything looks fine.

but when i click through to this page it comes up blank...nothing in the source code either.

any suggestions?

I have a list of top 5 news stories on home page...when i click on one of them it goes to the details viewer to display the story but the page comes up blank.

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