ich habe mir hier:
http://cvs.sourceforge.net/viewcvs.py/p ... guestbook/
das Guestbook Plugin runtergeladen.
In der Administration Suite habe ich es auch "aktiviert".
Nun meine Frage.
Ich will das Guestbook unabhängig vom Blog aufrufen und das ganze noch so wie den Blog auch "embedded" in eine andere php-seite
Also hab ich erstmal eine guestlist.php angelegt die folgendermaßen aussieht:
Code: Select all
<?php
$_REQUEST['page'] = 'blog';
// Let serendipity generate our content:
ob_start();
require '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 'guestcontent.php';
?>Für den "normalen" Blog geht das ja mit
Code: Select all
<?php echo $blog_data ?> Und was muss ich evtl. noch beachten?
Was muss im Admin-Bereich genau bei "Static URL" eintragen?
Danke und Grüße
Jorainbo