I followed the tutorial for embedding, and am having partial luck.
the blog is embedded into http://www.radiomagic.co.uk/newsser.php
I get an output of the correct page and it has the blog embedded - but, I cannot follow any of the links (archive, recent) at the side. When i do it comes out of the newsser.php page, and as there are no headers/template info it looks a mess without my navigation/images etc.
If for example I follow the link to my first story it goes to http://www.radiomagic.co.uk/serendipity ... Live!.html which does not keep embedded into the newsser.php page (with the navigation
Wrapper.php and newsser.php are both in the root. Serendipity is in a directory below root /serendipity/
My index file is still set as index.php (if changed it shows a blank page)
my wrapper page is
Code: Select all
<?php
ob_start();
chdir("./serendipity/");
require("index.php");
chdir("../");
$serendipity_contents = ob_get_contents();
ob_end_clean();
?>Code: Select all
<?php
require("wrapper.php"); // stores S9Y in a variable
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<link href="css/radiomagic.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
.style1 {font-size: 12px}
-->
</style>
</head>
<body>
<div id="wrap">
<div id="header">
<div id="logo">
<a href="index.html"><img src="images/RMlogo.png" alt="PaganDASH - I'm Pagan - Count me IN!"></a> </div>
<div class="clearrow"></div>
</div>
<div class="clearrow"></div>
<div id="nav">
<p><strong>Navigation</strong><br />
<a href="index.html">Home</a><br />
<a href="news.php">News</a><br />
<a href="books.html">Books</a><br />
<a href="audio.html">Audio</a><br />
<a href="video.html">Video</a><br />
<a href="contact.php">Contact</a><br />
<a href="links.html">Links</a><br />
</p>
</div>
<div id="content">
<div id="title">
Radio <span class="red">Magic</span> - Latest News.</div>
<?php
echo $serendipity_contents; // Print the variable
?>
</div>
<div class="clearrow"></div>
<div id="footer">
Radio Magic<span class="red" style="font-style: italic;"></span> - <a href="mailto:mail@jfortune.co.uk">mail@jfortune.co.uk</a><br />
Site designed by <a href="mailto:editor@pentaclemagazine.org">Jon Randall</a>, Mar 2008<br />
</div>
<div class="clearrow"></div>
</div>
</body>
</html>
Jon