3,626

(6 replies, posted in PunBB 1.2 troubleshooting)

That's not the issue, that's something MySQL does when  talking about permissions
Your MySQL user needs the permissions to create a temporary table

3,627

(19 replies, posted in PunBB 1.2 troubleshooting)

Aha, I see: replace do_bbcode with parse_message

3,628

(19 replies, posted in PunBB 1.2 troubleshooting)

OK, so you want to change the custom group ranks (as opposed to the custom member ranks, or the number of post ranks). See if this works:

include/functions.php
FIND

    // If the user group has a default user title
    else if ($user['g_user_title'] != '')
        $user_title = pun_htmlspecialchars($user['g_user_title']);

REPLACE WITH

    // If the user group has a default user title
    else if ($user['g_user_title'] != '')
    {
        require_once PUN_ROOT.'include/parser.php';
        $user_title = do_bbcode(pun_htmlspecialchars($user['g_user_title']));
    }

3,629

(19 replies, posted in PunBB 1.2 troubleshooting)

Sure: which ranks do you want to allow BBCode for?

3,630

(7 replies, posted in PunBB 1.2 troubleshooting)

Yeah, that's probably the easiest way to adapt what you had for PunBB. There probably is another way to do it with division and rounding of the timestamps, but your way looks nicer tongue

3,631

(7 replies, posted in PunBB 1.2 troubleshooting)

There's a MySQL function FROM_UNIXTIME that should do it wink

3,632

(47 replies, posted in PunBB 1.2 troubleshooting)

Interesting: the issue is only with Hotmail?

So it's OK to overwrite them?

You can't grab it from the quickjump for various reasons, the most important being that you have no way of knowing what category your specific forum is. Well, that and the fact that the quickjump is included AFTER you need to output the category name, so you don't have access to the query in the right place.

Please don't write in caps.
Also, because you're using a free PunBB hosting site, there's not really a whole lot we can do to help you. You'll have to contact Connor to get support.

3,636

(8 replies, posted in PunBB 1.2 bug reports)

Mark wrote:

it should work on windows anyway.
i've got punbb running on my localhost which is using windows..

IIS6 apparently might have some issues with relative paths

3,637

(19 replies, posted in PunBB 1.2 troubleshooting)

get_title function in include/functions.php, you need to decide HTML versus BBCode and then which ranks you want to allow the extra stuff in

3,638

(6 replies, posted in PunBB 1.2 troubleshooting)

Make sure the cache directory is writable

You would have to edit the query to add a join for the categories table

3,640

(3 replies, posted in PunBB 1.2 troubleshooting)

There is no mention of it: what script is this?

3,641

(7 replies, posted in PunBB 1.2 troubleshooting)

How would you write the query if you had a full datestamp?

3,642

(19 replies, posted in PunBB 1.2 troubleshooting)

You would have to edit the function which generates the titles so that either BBCode is allowed or HTML is allowed (I'd go for BBCode)

3,643

(13 replies, posted in PunBB 1.2 troubleshooting)

Then you wouldn't be getting an error about the table not existing, would you smile

Nope, sorry: try Googling for some smile

So does the forum you want to copy the stuff to already have posts, etc?

Moved to Feature Requests, since this isn't actually a bug in the way PunBB works

I'm not sure what you're asking about. Do you have seperate installs of PunBB that you want to merge or do you want to move the address of the forums?

3,648

(13 replies, posted in PunBB 1.2 troubleshooting)

Then it isn't installed wink

You can disable the ability of guests to read/register, which means all they can do is go to the login page
If you disable registration, there's a plugin you can use to manually add users. Otherwise, you can set a new default group for new users with permissions the same as a Guest. Then you can manually move users into a proper group once they're approved

3,650

(3 replies, posted in PunBB 1.2 discussion)

Take a look at the top on index.php
http://punbb.org/forums/search.php?action=show_new