1

(32 replies, posted in PunBB 1.2 troubleshooting)

I can not download the converter please help, I wanna use my current PunBB with PHP Nuke!! Thanks!!!

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!

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!!!

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" --->

anywhere in the index.php file right? does this work with  1.2.10

Thanks!!!

Hey I am not sure why I get paranthasis like this

Last 5 Visitors:
URTranceZone() Guest() scb2k() <-----

www.urtrancezone.com/forum/

someone help!!!

8

(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!

I would like to use my own background on the board is there a way to do this?