I am trying to intigrate this nice blog system into a site.
How ever i am having a problem, when you chose Next, to view the next page of articles, it just reloads the site, and dosent change the site..
i have intigrated it with a wrapper, that wraps the blog into my design, looking like this:
Code: Select all
<?php
$_REQUEST['page'] = 'blog';
ob_start();
chdir('blog');
require 'blog/index.php';
$blog_data = ob_get_contents();
chdir('..');
ob_end_clean();
require 'index_main.php';
?>http://www.perestrojka.dk/
even thought it danish you can just scrool down to the bottom, and press Næste side, (wich means next page), and see my problem..
does any know how to fix this?