yes.

ive had this a few times, but i just hit refresh and it loads, its like it not loading the css yeah?

http://punbb.org/forums/viewtopic.php?id=3565

nice feature called search

just put "0" as the time.

480

(6 replies, posted in PunBB 1.2 discussion)

just out of curiosity, why would you want to do that? tongue

works nice.

482

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

FredrikK wrote:

When installing:

"An error was encountered
File: /customers/brunna.se/brunna.se/httpd.www/install_mod.php
Line: 76

PunBB reported: Unable to add columns to table

Database reported: Duplicate column name 'g_pm' (Errno: 1060)"

What to do? sad

seems like the column is already in the database.

upside down big_smile

485

(11 replies, posted in PunBB 1.2 troubleshooting)

not all the padding. just the padding for the section you want at the right.

486

(11 replies, posted in PunBB 1.2 troubleshooting)

were you have the padding set to left in CSS change it to right.

487

(9 replies, posted in Feature requests)

is it possible to make other files editable from a plugin like that?

you need to put this at the top

define('PUN_ROOT', './');

489

(5 replies, posted in Feature requests)

legabier wrote:

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

(9 replies, posted in Feature requests)

if you ask connorhd he has one that he uses for mypunbb smile

491

(12 replies, posted in General discussion)

http://punbb.org/docs/faq.html#license

wouldnt mind trying out this script myself.

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.

there is one at the bottom of the viewforum.php page.

if you delete config.php you will not be able to access your site smile
you should delete install.php though smile

you mean were the subject is?
theres like
[HELP] bla bla bla  ?

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

(1 replies, posted in PunBB 1.2 bug reports)

did you hit the post butto twice by mistake?

499

(11 replies, posted in PunBB 1.2 troubleshooting)

register them usernames yourself smile
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.

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