I really can't say. Hopefully, before christmas.

1,102

(5 replies, posted in PunBB 1.2 discussion)

froste: Please don't post in two different topics with basically the same contents. I replied to your post in the other topic. Lets stick to that one.

1,103

(36 replies, posted in PunBB 1.2 troubleshooting)

froste: Assigning someone to the moderator group doesn't mean they can moderate forums. You need to assign them moderation rights to individual forums. You do this in the user's profile under administration. If I understand you correctly, the "only" feature you miss is being able to have users that are members of more than one group.

In my opinion, it wouldn't make sense for PunBB to be "lean and mean" and at the same time have a complex user group system with permission inheritance and whatnot.

1,104

(3 replies, posted in PunBB 1.2 troubleshooting)

Don't forget to rebuild the search index once you've imported it. Admin->Maintenance.

Enable DEBUG mode and try again. I need the full error message in order to help you out.

Yes, that's another option.

chuyskywalker: Yeah, I haven't been playing it for a while now. Whenever I find some time to spare these days, I go for DoD: Source.

I would try this one instead:

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

1,109

(3 replies, posted in PunBB 1.2 troubleshooting)

Hmm. Try emptying the search index before dumping the database from the old host. To do that, empty the tables search_matches and search_words. The following queries should do the trick:

TRUNCATE TABLE search_matches;
TRUNCATE TABLE search_words;

That is the default behavior. Check what you have "Sort topics by" set to in admin/forums.

If they are located on the same domain, it is probably a cookie conflict. You can edit the cookie variables in config.php to correct this. In your case, setting the cookie_path to /forum1/ and /forum2/ respectively should help.

1,112

(4 replies, posted in Programming)

Improved performance of:

    * general execution/compilation. (Andi, Thies, Sterling, Dmitry, Marcus)
    * switch() statement. (Dmitry)
    * several array functions. (Marcus)
    * virtual path handling by adding a realpath() cache. (Andi)
    * variable fetches. (Andi)
    * magic method invocations. (Marcus)

These things I like.

The problem here is that you have attachments. PunBB does not support attachments other than via a mod and I don't think the migration tools transfers your attachments over to PunBB.

The register button is removed if you disable new registrations in admin/options. The user list thing you have to remove manually in functions.php (or wait for 1.3).

What I said in my previous post. Clear the moderator field and then re-add the moderators. "The moderator field" is in the database.

Open up include/template/main.tpl and remove <pun_title>

You haven't compiled/configured PHP with MySQL-support. You might have MySQL installed, but you have to tell PHP to include support when you compile it.

1,118

(12 replies, posted in General discussion)

Ludo wrote:

French people make good cars now smile

76000 brits disagree with you. Check out the bottom 10. Ok, the brits might not be the best people to ask, but still smile

1,119

(114 replies, posted in PunBB 1.2 discussion)

I will look into it. I'm just afraid of adding more conditions to the queries.

Currently, no.

1,121

(6 replies, posted in PunBB 1.2 discussion)

From the downloads page:

Please note that the migration tool is unofficial and that any support questions therefore should be directed to the author.

No. It should tell you that the process completed successfully. What do you mean by you can't access the forum? Do you get an error message?

1. Change

$forum_id = 2;

to

$forum_id = '2,4,10';


2. Search and replace all

forum_id='.$forum_id.'

with

forum_id IN('.$forum_id.')


That should do it. Haven't tried it though.

The values you entered when you installed the forum. db_host is the hostname for your mysql server (commonly localhost). db_name is the name of the database you've installed PunBB into. db_username is the name of the user you use to access mysql.

1,125

(4 replies, posted in PunBB 1.2 troubleshooting)

Byt ut

$tpl_temp = '<div id="brdwelcome" class="inbox">'."\n\t\t\t".'<ul class="conl">'."\n\t\t\t\t".'<li>'.$lang_common['Logged in as'].' <strong>'.pun_htmlspecialchars($pun_user['username']).'</strong></li>'."\n\t\t\t\t".'<li>'.$lang_common['Last visit'].': '.format_time($pun_user['last_visit']).'</li>';

mot

$tpl_temp = '<div id="brdwelcome" class="inbox">'."\n\t\t\t".'<ul class="conl">'."\n\t\t\t\t".'<li>Hej <strong>'.pun_htmlspecialchars($pun_user['username']).'</strong>. Känn dig som hemma!</li>'."\n\t\t\t\t".'<li>'.$lang_common['Last visit'].': '.format_time($pun_user['last_visit']).'</li>';