I have some problems with the embeded installation.
I have tried several versions to get the embeded installation running.
The Last one is:
Code: Select all
## index.php
include ('inc/functions/functions.nav.php');
include('includes/layout/header.php'); // Header
include('includes/layout/navigation.left.php'); //Navigation left
?><div id="contentColumn"><?php
include('includes/layout/navigation.right.php'); //Column right
ob_start();
require 's9y/index.php';
$blog_data = ob_get_contents();
ob_end_clean();
// Now we include our normal content building file.
// This one has to make use of your $blog_data variable to print
// the content where appropriate!
// require 'content.php';
require('includes/content.php'); //Content
?></div><?php
include('includes/layout/footer.php'); //Footer
?>Code: Select all
switch($_GET['action']) {
.....
...
...
case('13') :
echo $blog_data;
break;
}Code: Select all
Cannot modify header information - headers already sent by (output started at .....includes/layout/header.php:17) in .....s9y/index.php on line 19Thank you !
Oliver