I'm up to date now; Thanks.
52 2007-07-29 05:29
Re: Have viewtopic.php?pid=x redirect to viewtopic.php?id=y#x. (7 replies, posted in Feature requests)
I've actually been meaning to ask what people would think about that idea.
Edit: ... because it can be annoying to edit a post (or post a new reply, etc.) and then be redirected to a page where the topic id is not readily available.
53 2007-07-28 23:02
Re: Anonymous SVN access to 1.3 (9 replies, posted in PunBB 1.2 discussion)
On the command line? I've been having problems with this myself:
$ svn checkout 'http://punbb.org/svn/punbb/branches/punbb-1.3-dev'
svn: PROPFIND request failed on '/'
svn: PROPFIND of '/': 200 OK (http://punbb.org)
Edit: svn, version 1.4.4 (r25188)
54 2007-07-28 04:30
Re: Improving login security (10 replies, posted in PunBB 1.2 modifications, plugins and integrations)
A SHA1 hash could still be useful...
55 2007-07-22 19:38
Re: error (2 replies, posted in PunBB 1.2 troubleshooting)
56 2007-07-19 02:22
Re: pun_include not doing anything (1 replies, posted in PunBB 1.2 modifications, plugins and integrations)
`pun_include` looks for files in /include/user/.
57 2007-07-16 23:38
Re: Help Desk version of PunBB (13 replies, posted in General discussion)
I don't know of any either...
58 2007-07-10 18:36
Re: I think Textile should replace BBcode (37 replies, posted in PunBB 1.2 discussion)
Beside, most of the user of other markup language or typographic helper (Textile, Markdown, etc.) already have a board under BBcode that will need conversion of some kind.
Someone could make a conversion extension.
59 2007-06-30 18:53
Re: I think Textile should replace BBcode (37 replies, posted in PunBB 1.2 discussion)
Just out of curiosity... Has there been any consideration of making PunBB's BBCode implementation into an extension for 1.3 (and still using it by default)?
60 2007-06-12 23:18
Re: Safari for Windows (10 replies, posted in General discussion)
But isn't it just based on the same Gecko engine as Firefox?
WebKit is based on KHTML.
WebKit is an open source web browser engine. WebKit is also the name of the Mac OS X system framework version of the engine that's used by Safari, Dashboard, Mail, and many other OS X applications. WebKit's HTML and JavaScript code began as a branch of the KHTML and KJS libraries from KDE.
61 2007-05-31 17:55
Re: [Release] Author Update (18 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Thanks Smartys.
62 2007-05-31 03:44
Re: when we could got PunBB1.3? (13 replies, posted in PunBB 1.2 discussion)
63 2007-05-29 18:49
Re: Want To Allow Moderators To View Some Plugins i Installed in their adm (2 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Change the [filename] from AP_Whatever.php to AMP_Whatever.php.
64 2007-05-28 18:50
Re: What editor do you use for php? (114 replies, posted in Programming)
TextMate on OS X.
65 2007-05-22 18:18
Re: How do I remove the entire table above the footer ? (4 replies, posted in PunBB 1.2 modifications, plugins and integrations)
The title says it all
The forums are listed in a table, but I'll assume you're talking about the board info.
Open index.php and find:
// Collect some statistics from the database
$result = $db->query('SELECT COUNT(id)-1 FROM '.$db->prefix.'users') or error('Unable to fetch total user count', __FILE__, __LINE__, $db->error());
$stats['total_users'] = $db->result($result);
$result = $db->query('SELECT id, username FROM '.$db->prefix.'users ORDER BY registered DESC LIMIT 1') or error('Unable to fetch newest registered user', __FILE__, __LINE__, $db->error());
$stats['last_user'] = $db->fetch_assoc($result);
$result = $db->query('SELECT SUM(num_topics), SUM(num_posts) FROM '.$db->prefix.'forums') or error('Unable to fetch topic/post count', __FILE__, __LINE__, $db->error());
list($stats['total_topics'], $stats['total_posts']) = $db->fetch_row($result);
?>
<div id="brdstats" class="block">
<h2><span><?php echo $lang_index['Board info'] ?></span></h2>
<div class="box">
<div class="inbox">
<dl class="conr">
<dt><strong><?php echo $lang_index['Board stats'] ?></strong></dt>
<dd><?php echo $lang_index['No of users'].': <strong>'. $stats['total_users'] ?></strong></dd>
<dd><?php echo $lang_index['No of topics'].': <strong>'.$stats['total_topics'] ?></strong></dd>
<dd><?php echo $lang_index['No of posts'].': <strong>'.$stats['total_posts'] ?></strong></dd>
</dl>
<dl class="conl">
<dt><strong><?php echo $lang_index['User info'] ?></strong></dt>
<dd><?php echo $lang_index['Newest user'] ?>: <a href="profile.php?id=<?php echo $stats['last_user']['id'] ?>"><?php echo pun_htmlspecialchars($stats['last_user']['username']) ?></a></dd>
<?php
if ($pun_config['o_users_online'] == '1')
{
// Fetch users online info and generate strings for output
$num_guests = 0;
$users = array();
$result = $db->query('SELECT user_id, ident FROM '.$db->prefix.'online WHERE idle=0 ORDER BY ident', true) or error('Unable to fetch online list', __FILE__, __LINE__, $db->error());
while ($pun_user_online = $db->fetch_assoc($result))
{
if ($pun_user_online['user_id'] > 1)
$users[] = "\n\t\t\t\t".'<dd><a href="profile.php?id='.$pun_user_online['user_id'].'">'.pun_htmlspecialchars($pun_user_online['ident']).'</a>';
else
++$num_guests;
}
$num_users = count($users);
echo "\t\t\t\t".'<dd>'. $lang_index['Users online'].': <strong>'.$num_users.'</strong></dd>'."\n\t\t\t\t".'<dd>'.$lang_index['Guests online'].': <strong>'.$num_guests.'</strong></dd>'."\n\t\t\t".'</dl>'."\n";
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";
?>
</div>
</div>
</div>
Delete it or comment it all out.
Edit: This probably belongs in Modifications.
66 2007-05-21 22:37
Re: . (2 replies, posted in PunBB 1.2 modifications, plugins and integrations)
I guess this should be moved to the bug reports section?
Modifications, because that's what this is.
67 2007-05-21 21:12
Re: . (3 replies, posted in PunBB 1.2 troubleshooting)
Also, when I read people's posts, it still takes about 20 minutes for the icon next to the forum to change from blue to gray. Is this normal?
Yes; "new" posts are determined by the time of your last visit.
68 2007-05-15 00:27
Re: Regarding punBB 1.3 (4 replies, posted in General discussion)
*looks for a large trout*
69 2007-05-11 14:35
Re: What's the CSS editor all the groovy people are using? (16 replies, posted in General discussion)
I don't use it myself, but I've heard that CSSEdit is a good one for Mac OS X.
70 2007-05-09 19:53
Re: Localized warning message (2 replies, posted in PunBB 1.2 bug reports)
There appear to be six non-localized messages in current 1.3-dev [961] and two non-localized messages in 1.2.15 (excluding the admin files).
The other line in 1.2.15 is profile.php:543 (that line also exists in 1.3-dev).
71 2007-05-08 20:38
Re: Is function attaching for mods/plugins ever planned? (3 replies, posted in Feature requests)
Yes. The extension system for 1.3 aims to address these issues
72 2007-05-08 20:16
Re: Would this be a useful way to receive update notifications? (2 replies, posted in PunBB 1.2 discussion)
Subscribe to the PunBB Newsletter to receive notification of updates and other important events regarding PunBB.
74 2007-05-01 15:02
Re: hmm guys is this dangerous? (4 replies, posted in PunBB 1.2 discussion)
Bug reports
Find a bug? Report it here. Note: Report security related bugs here.
75 2007-04-26 22:54
Re: Flash avatars? (7 replies, posted in Feature requests)
You might have to skip the width/height check (unless it works for Flash).
// Now check the width/height
list($width, $height, $type,) = getimagesize($pun_config['o_avatars_dir'].'/'.$id.'.tmp');