I've spent a couple of minutes in bringing the contentislands back to ubb-threads. The script is very basic, but you can adapt it as you like. I used the External Island feature to make this work. First create a new Post Island. In my example I used post island 12 for this.
Then create the following PHP and upload this to anywhere on your board:
Code
<?php
if (!defined('UBB_MAIN_PROGRAM')) define('UBB_MAIN_PROGRAM',1);
$style_side="";$tbopen="";$tbclose="";

$txt ="<table width=\"100%\">";
$txt = $txt.get_include_contents("/var/www/forums/test/languages/dutch 7.2/portal_islands.php");
$txt = $txt.get_include_contents("/var/www/forums/test/languages/dutch 7.2/generic.php");
$txt = $txt.get_include_contents("/var/www/forums/test/cache/post_island_12.php");
$txt = $txt."</table>";

$txt = str_replace("/ubbthreads.php?","http://forumtst.merudi.net/ubbthreads.php?",$txt);
$txt = str_replace("\"","\\\"",$txt);
$txt = str_replace("\r","",$txt);
$txt = str_replace("\n","",$txt);

echo "document.write(\"";
echo "$txt";
echo "\")";



function get_include_contents($filename) {
    if (is_file($filename)) {
        ob_start();
        include $filename;
        $contents = ob_get_contents();
        ob_end_clean();
        return $contents;
    }
    return false;
}

?> 
Don't forget to change it to your dir's ofcourse wink.
Now the following is only needed in the page this island needs to be shown:
Code
<script src="http://forumtst.merudi.net/cis_nl.php"
language="Javascript1.3" type="text/javascript"></script>
Ofcourse set the correct URL to your uploading file. And your done.
If you want any formatting, it cannot hurt to include some stylesheets in your php, but feel free as you go along. This is only a little example wink.

Have fun.

Last edited by nims2; 07/08/2007 3:21 PM.