I can not download the converter please help, I wanna use my current PunBB with PHP Nuke!! Thanks!!!
2 2005-11-13 07:23
Re: Mambo integration (50 replies, posted in PunBB 1.2 modifications, plugins and integrations)
I was wondering if there was a way to transfer all existing users and info to Mambo using Punbo? I did the install worked perfect however it was set as a new installation. Help would be much appreciate it!
3 2005-11-12 15:09
Re: [REQ] Last 5 Active users (15 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Question to the people who got it working. I notice that the names do not refresh as new people log in, the old names stay and donest even show the new people who where logged in.. HELP!!!
4 2005-11-05 19:25
Re: [REQ] Last 5 Active users (15 replies, posted in PunBB 1.2 modifications, plugins and integrations)
you enter this code in the index.php
Look for this towards the bottom
if ($num_users > 0)
echo "\t\t\t".'<dl id="onlinelist" class= "clearb">'."\n\t\t\t\t".'<dt><strong>'.$lang_index['Online'].': </strong></dt>'."\t\t\t\t".implode(',</dd> ', $users).'</dd>'."\n\t\t\t".'</dl>'."\n";
else
echo "\t\t\t".'<div class="clearer"></div>'."\n";
}
else
echo "\t\t".'</dl>'."\n\t\t\t".'<div class="clearer"></div>'."\n";
?>
then insert code below..
<!--- "Last 5 Visitors" Script by ultime (ultime@omgultime.com) created for PunBB --->
<div id="announce" class="block">
<div class="box">
<div class="inbox">
<span><b>Recent Visitors:</b></span>
<div>
<?php
$result = $db->query('SELECT id, username, last_visit FROM '.$db->prefix.'users ORDER BY num_posts DESC LIMIT 10') or error('Unable to fetch user data', __FILE__, __LINE__, $db->error());
while ($data = $db->fetch_assoc($result))
{
echo "".'<a href="profile.php?id='.$data['id'].'">'.pun_htmlspecialchars($data['username']).'</a> '."";
}
?>
</div>
</div>
</div>
</div>
<!--- End for "Last 5 active users" --->
5 2005-11-05 10:39
Re: the birthday reminder (17 replies, posted in PunBB 1.2 modifications, plugins and integrations)
anywhere in the index.php file right? does this work with 1.2.10
6 2005-11-05 10:34
Re: [REQ] Last 5 Active users (15 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Thanks!!!
7 2005-11-05 10:23
Re: [REQ] Last 5 Active users (15 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Hey I am not sure why I get paranthasis like this
Last 5 Visitors:
URTranceZone() Guest() scb2k() <-----
someone help!!!
8 2005-11-03 23:17
Topic: Background of the Board (1 replies, posted in PunBB 1.2 troubleshooting)
is there a way for me to modify the background of the board?
I would also like to add a pictures change the buttons.. any help would be apprecaite it!
9 2005-11-03 23:05
Topic: How to change background (1 replies, posted in PunBB 1.2 modifications, plugins and integrations)
I would like to use my own background on the board is there a way to do this?