yes.
476 2005-11-19 18:32
Re: Cash Mod 1.0.1 work on PunBB 1.2.10? (3 replies, posted in PunBB 1.2 modifications, plugins and integrations)
477 2005-11-18 21:58
Re: Off topic: Problem with PunBB in Internet Explorer (5 replies, posted in General discussion)
ive had this a few times, but i just hit refresh and it loads, its like it not loading the css yeah?
478 2005-11-18 20:48
Re: [SIZE] bbcode tag - How to? (10 replies, posted in PunBB 1.2 troubleshooting)
479 2005-11-18 19:33
Re: Remove or Edit Redirect Message... (4 replies, posted in PunBB 1.2 discussion)
just put "0" as the time.
480 2005-11-16 17:33
Re: change the date of a post (6 replies, posted in PunBB 1.2 discussion)
just out of curiosity, why would you want to do that?
481 2005-11-16 07:59
Re: Userlist Access 1.0 (21 replies, posted in PunBB 1.2 modifications, plugins and integrations)
works nice.
482 2005-11-15 17:45
Re: Layout help (2 replies, posted in PunBB 1.2 discussion)
if you look in viewtopic.php and find the lines that are out putting this, put "//" infront of them (without the qutes)
483 2005-11-12 17:46
Re: Private Message mod v1.2.2 (204 replies, posted in PunBB 1.2 modifications, plugins and integrations)
When installing:
"An error was encountered
File: /customers/brunna.se/brunna.se/httpd.www/install_mod.php
Line: 76PunBB reported: Unable to add columns to table
Database reported: Duplicate column name 'g_pm' (Errno: 1060)"
What to do?
seems like the column is already in the database.
484 2005-11-12 15:32
Re: My community - Still working on it! (10 replies, posted in PunBB 1.2 show off)
upside down
485 2005-11-12 15:01
Re: Board statistics Help. (11 replies, posted in PunBB 1.2 troubleshooting)
not all the padding. just the padding for the section you want at the right.
486 2005-11-12 14:11
Re: Board statistics Help. (11 replies, posted in PunBB 1.2 troubleshooting)
were you have the padding set to left in CSS change it to right.
487 2005-11-10 20:38
Re: features for a free forum host (9 replies, posted in Feature requests)
is it possible to make other files editable from a plugin like that?
488 2005-11-10 20:35
Re: punMod and constant PUN_ROOT (3 replies, posted in PunBB 1.2 troubleshooting)
you need to put this at the top
define('PUN_ROOT', './');
489 2005-11-10 17:29
Re: Last login information (5 replies, posted in Feature requests)
...And a tool to purge members not loged in the last X days, like Prune to purge old posts,...
there is a plugin called user management for this.
490 2005-11-10 17:25
Re: features for a free forum host (9 replies, posted in Feature requests)
if you ask connorhd he has one that he uses for mypunbb
491 2005-11-08 18:13
Re: Question regarding license (12 replies, posted in General discussion)
492 2005-11-07 15:56
Re: Multi - PunBB v2 (38 replies, posted in PunBB 1.2 modifications, plugins and integrations)
wouldnt mind trying out this script myself.
493 2005-11-07 15:22
Re: Do it on the Next version Please. (7 replies, posted in Feature requests)
Do it in your Next post Please.
Post so people can understand what your saying easyer, i know Rickard has said that once befor.
Locked forums? you can close a thred by going onto it and selecting "close" at the bottom.
494 2005-11-06 20:29
Re: [moderation] move multiple posts from a topic (8 replies, posted in Feature requests)
there is one at the bottom of the viewforum.php page.
495 2005-11-05 20:54
Re: Do I have to delete config file? (3 replies, posted in PunBB 1.2 troubleshooting)
if you delete config.php you will not be able to access your site
you should delete install.php though
496 2005-11-05 20:40
Re: how do i get topic image tags? (2 replies, posted in PunBB 1.2 troubleshooting)
you mean were the subject is?
theres like
[HELP] bla bla bla ?
497 2005-11-05 19:34
Re: [REQ] Last 5 Active users (15 replies, posted in PunBB 1.2 modifications, plugins and integrations)
or what i do it put in it a .txt file in include/user and do an include were i want it using main.tpl
498 2005-11-05 19:13
Re: Strange Froblem. (1 replies, posted in PunBB 1.2 bug reports)
did you hit the post butto twice by mistake?
499 2005-11-05 13:38
Re: Banning System (11 replies, posted in PunBB 1.2 troubleshooting)
register them usernames yourself
when you banned the account and email, did you ban the ip aswell?
if you ban the ip they shouldnt be able to get back on.
500 2005-11-05 10:29
Re: [REQ] Last 5 Active users (15 replies, posted in PunBB 1.2 modifications, plugins and integrations)
change it to this...
<!--- "Last 5 Visitors" Script by ultime (ultime@omgultime.com) created for PunBB --->
<div id="announce" class="block">
<h2><span><b>Last 5 Visitors</b></span></h2>
<div class="box">
<div class="inbox">
<div>
<?php
$result = $db->query('SELECT id, username, last_visit FROM '.$db->prefix.'users ORDER BY num_posts DESC LIMIT 5') 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" --->