I really can't say. Hopefully, before christmas.
1,101 2005-11-30 09:11
Re: pagening (1,2, ...) not working - 404 error? (7 replies, posted in PunBB 1.2 troubleshooting)
1,102 2005-11-30 09:10
Re: Groups in 1.3 (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 2005-11-30 09:07
Re: Users in 2 Groups? (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 2005-11-30 09:01
Re: error 1062 (3 replies, posted in PunBB 1.2 troubleshooting)
Don't forget to rebuild the search index once you've imported it. Admin->Maintenance.
1,105 2005-11-29 17:24
Re: How to fetch posts from different forums using AP_News_Generator?? (5 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Enable DEBUG mode and try again. I need the full error message in order to help you out.
1,106 2005-11-29 17:20
Re: pagening (1,2, ...) not working - 404 error? (7 replies, posted in PunBB 1.2 troubleshooting)
Yes, that's another option.
1,107 2005-11-29 14:39
Re: another "Found" pun installation worth mentioning. (22 replies, posted in PunBB 1.2 show off)
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.
1,108 2005-11-29 14:36
Re: pagening (1,2, ...) not working - 404 error? (7 replies, posted in PunBB 1.2 troubleshooting)
I would try this one instead:
1,109 2005-11-29 14:34
Re: error 1062 (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;
1,110 2005-11-28 21:25
Re: threads move up the page whenever there's a new post (2 replies, posted in PunBB 1.2 troubleshooting)
That is the default behavior. Check what you have "Sort topics by" set to in admin/forums.
1,111 2005-11-28 13:56
Re: Logging out when visting another forum (4 replies, posted in PunBB 1.2 troubleshooting)
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 2005-11-28 11:08
Re: PHP 5.1.0 released (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.
1,113 2005-11-25 13:01
Re: The easiest way to convert from phpbb to punbb. (10 replies, posted in PunBB 1.2 troubleshooting)
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.
1,114 2005-11-25 10:08
Re: How do I add a link in the "main menu" in the header (5 replies, posted in PunBB 1.2 troubleshooting)
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).
1,115 2005-11-24 14:51
Re: Moderator's name not updated in the forum description (4 replies, posted in PunBB 1.2 bug reports)
What I said in my previous post. Clear the moderator field and then re-add the moderators. "The moderator field" is in the database.
1,116 2005-11-24 11:06
Re: How do you remove the board title? (7 replies, posted in PunBB 1.2 troubleshooting)
Open up include/template/main.tpl and remove <pun_title>
1,117 2005-11-24 11:03
Re: New installation: No MySQL support in PHP? (PHP 5.0.5 & MySQL 5.0.15) (3 replies, posted in PunBB 1.2 troubleshooting)
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 2005-11-23 22:48
Re: An interview with yours truly (12 replies, posted in General discussion)
French people make good cars now
76000 brits disagree with you. Check out the bottom 10. Ok, the brits might not be the best people to ask, but still
1,119 2005-11-23 22:46
Re: What is planned for PunBB 1.3 then? (114 replies, posted in PunBB 1.2 discussion)
I will look into it. I'm just afraid of adding more conditions to the queries.
1,120 2005-11-23 22:44
Re: Verify registrations but allow users to specify their password? (1 replies, posted in PunBB 1.2 discussion)
Currently, no.
1,121 2005-11-23 22:44
Re: migration from minibb 2.0 (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.
1,122 2005-11-23 22:43
Re: [completed]Error upgrading from 1.1* to 1.2 (12 replies, posted in PunBB 1.2 troubleshooting)
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,123 2005-11-23 22:41
Re: How to fetch posts from different forums using AP_News_Generator?? (5 replies, posted in PunBB 1.2 modifications, plugins and integrations)
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.
1,124 2005-11-23 17:19
Re: [completed]Error upgrading from 1.1* to 1.2 (12 replies, posted in PunBB 1.2 troubleshooting)
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 2005-11-23 16:04
Re: Change text in header (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>';