PDA

View Full Version : PowerCMS and SPRY Framework


shadow329043
02-03-2010, 11:20 AM
Have any of you successfully displayed content from PowerCMS within a SPRY tab? I tried it yesterday and only got the add to site code to display as text. When I uploaded my page to the site and navigated to it, I got a blank page,
So I diecided to go in a different direction and display the content within SPRY as static content............but such knowledge would be useful in the future.

Jason Byrnes
02-03-2010, 01:22 PM
A blank page means that a PHP error occurred, but error reporting is turned off. To turn error reporting on, add the following at line 1:



<?php
error_reporting(E_ALL);
ini_set('display_errors','on');
?>

I have been able to powerCMS content to display in a spry region before.