thanks, I've changed the newpost icons now.
Any other suggestions would be apreciated.
1 2005-02-17 21:25
Re: My new forum (4 replies, posted in PunBB 1.2 show off)
2 2005-02-16 20:54
Topic: My new forum (4 replies, posted in PunBB 1.2 show off)
http://www.orderjava.com/main/forums/index.php
Its a little one
3 2005-01-06 19:47
Re: New punbb (7 replies, posted in PunBB 1.2 show off)
Thats for a new site coming up, the punbb is still in use here CarsonAntiques
4 2004-12-18 16:19
Re: New punbb (7 replies, posted in PunBB 1.2 show off)
I kind of like it the way it is, this way it wont have to reload the sites php with all its DB calls,
Plus, in my browser it's very difficult to even realize its in a frame except when you reload the page it goes to the forums index, but Im working on a solution for that.
Thanks for the great forum script, It worked perfectly.
5 2004-12-18 01:02
Re: nav links (5 replies, posted in PunBB 1.2 troubleshooting)
I found the problem, I left off a " from the end of
echo ' "onLoad="document.getElementById(\''.$form_name.'\').'.$focus_element.'.focus()"';
thanks anyways.
6 2004-12-18 00:33
Re: nav links (5 replies, posted in PunBB 1.2 troubleshooting)
function generate_navlinks()
{
global $pun_config, $lang_common, $cookie, $cur_user;
$links = '<table class="cats_list_table" align="center"><tr>';
// Home and Userlist should always be displayed
$links .= '<td class="cats_list_line"><a href="index.php">Forums</a></td><td class="cats_list_line"> <a href="userlist.php">'.$lang_common['User list'].'</a></td>';
if ($pun_config['o_rules'] == '1')
$links .= '<td class="cats_list_line"><a href="misc.php?action=rules">'.$lang_common['Rules'].'</a></td>';
if ($cookie['is_guest'])
{
if ($pun_config['o_search'] == '1' && $pun_config['p_guests_search'] == '1')
$links .= '<td class="cats_list_line"><a href="search.php">'.$lang_common['Search'].'</a></td>';
$links .= '<td class="cats_list_line"><a href="register.php">'.$lang_common['Register'].'</a></td><td class="cats_list_line"><a href="login.php">'.$lang_common['Login'].'</a></td>';
$info = $lang_common['Not logged in'];
}
else
{
if ($cur_user['status'] < PUN_MOD)
{
if ($pun_config['o_search'] == '1')
$links .= '<td class="cats_list_line"><a href="search.php">'.$lang_common['Search'].'</a></td>';
$links .= '<td class="cats_list_line"><a href="profile.php?id='.$cur_user['id'].'">'.$lang_common['Profile'].'</a></td>';
$links .= '<td class="cats_list_line"><a href="login.php?action=out">'.$lang_common['Logout'].'</a></td>';
}
else
{
$links .= '<td class="cats_list_line"><a href="search.php">'.$lang_common['Search'].'</a></td>';
$links .= '<td class="cats_list_line"><a href="profile.php?id='.$cur_user['id'].'">'.$lang_common['Profile'].'</a></td>';
$links .= '<td class="cats_list_line"><a href="admin_index.php">'.$lang_common['Admin'].'</a></td>';
$links .= '<td class="cats_list_line"><a href="login.php?action=out">'.$lang_common['Logout'].'</a></td>';
}
}
$links .= '</tr></table>';
return $links;
}
7 2004-12-17 23:15
Topic: nav links (5 replies, posted in PunBB 1.2 troubleshooting)
I edited the way the navlinks home, user list etc.. are displayed in the functions.php but they dont show properly on the SEARCH, LOGIN or REGISTRATION page but they are fine everywhere else.
is there a way to fix this?
edit: they also dont get formatted from the
admin on these functions
Users, Censoring, Ranks, Bans, Prune, or Maintenance
8 2004-12-17 19:30
Re: New punbb (7 replies, posted in PunBB 1.2 show off)
thank you, I tried wrapping it, but since both pages send cookies, it didnt work
9 2004-12-17 19:08
Topic: New punbb (7 replies, posted in PunBB 1.2 show off)
I was looking for a fast and easily configurable forum for a site I was building
and PunBB was perfect, I just hope the iframe works with all browsers.