 |

s2smedia
User
Nov 25, 2008, 6:54 AM
Post #1 of 2
(202 views)
Shortcut
|
|
Details Viewer blank
|
Can't Post
|
|
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.
|
|
|  |
 |

Dave
Staff
/ Moderator

Nov 25, 2008, 9:35 AM
Post #2 of 2
(199 views)
Shortcut
|
|
Re: [s2smedia] Details Viewer blank
[In reply to]
|
Can't Post
|
|
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
|
|
|  |
|