Bien, dejo la respuestas aqui tambien :D
lo que tienes que hacer es guardar un fichero con el contenido siguiente(ya le he dado formato tipo phpBB) en la ruta del foro, por ejemplo llamándolo ultimos.php:
Código:
<?
// ##################################################################################
// ULTIMOS MENSAJES ENVIADOS A UN FORO
// ##################################################################################
define('IN_PHPBB', true);
$phpbb_root_path = './'; //PATH DEL FORO RESPECTO DEL SCRIPT
$p = $table_prefix;
?>
<table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline">
<tr>
<td class="catHead" height="28"><a name="login"></a><span class="cattitle">Ultimos mensajes</span></td>
</tr>
<tr>
<?
$auth_ary = auth(AUTH_READ, AUTH_LIST_ALL, $userdata);
while ( list($auth_forum_id, $auth_level) = each($auth_ary) )
{
if (!$auth_level['auth_read'] )
{
$auth_view_forums = ($auth_view_forums . " forum_id<>" . $auth_forum_id . " and ");
}
}
$auth_view_forums=($auth_view_forums=="") ? "" : ("WHERE " . $auth_view_forums ."1=1");
$sql = mysql_query("SELECT * FROM phpbb_topics ". $auth_view_forums." ORDER BY topic_last_post_id DESC LIMIT 0,5");
while ($row = mysql_fetch_array($sql)) {
$id = "$row[topic_id]";
$titulo = "$row[topic_title]";
$respuestas = "$row[topic_replies]";?>
<tr>
<td class="row1" align="center" valign="middle" height="28"><span class="gensmall">
<a href="http://www.mindpanic.com/foros/viewtopic.php?t=<?=$id?>&sid=<?=$userdata['session_id']?>"> + <?=$titulo?></a><br />(<?=$respuestas?> Respuestas)<br /><br />
</span> </td>
</tr>
<?}
?>
</table>
luego abres el archivo index.php y localizas casí al final :
Código:
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
y antes añades
Código:
include($phpbb_root_path . './ultimos.'.$phpEx);
Y debería de funcionar...
Salu2 ;)