Post by ogun » Wed Aug 15, 2007 5:46 pm

Not very graceful, but it does the job while you're figuring out where everything is:

in 'library\template\template.php', replace:

Code: Select all

ob_start();

include($file);
      
$content = ob_get_contents();
			
ob_end_clean();
with:

Code: Select all

ob_start();

echo "<!-- BEGIN:$file -->";
      
include($file);
      
$content = ob_get_contents();
			
echo "<!-- END:$file -->";

ob_end_clean();
..then you can have a quick look at the source of the page to see what files you're working with.

Don't forget to comment out/delete the new lines before putting your site live.

Active Member

Posts

Joined
Tue Aug 14, 2007 6:04 am

Post by paia » Thu Aug 16, 2007 4:22 pm

little correction...

Code: Select all

      		ob_start();

			echo "\n<!-- BEGIN:$file -->\n";
      
	  		include($file);
      
			echo "\n<!-- END:$file -->\n";

	  		$content = ob_get_contents();

      		ob_end_clean();

New member

Posts

Joined
Mon Jul 09, 2007 6:38 pm

Who is online

Users browsing this forum: No registered users and 1 guest