I haven't gotten it working yet, but I think I copied and pasted wrong.

There's other work I need to get to right now, so I apologize but I might not be able to tell you if I get it working today. Sorry!

1,352

(4 replies, posted in PunBB 1.2 show off)

Broken link: http://www.ksuicehockey.com/community/

Looks nice though.

CodeXP wrote:

Just uploaded a new version, as requested by pogenwurst smile

Hooray! I'll install tomorrow and tell you how it goes.

Thanks!

Kraeved wrote:

Manfre,
for some reason I've links logged without id=...

Example:
music (section name) links to viewforum.php (should be viewforum.php?id=9),
depeche mode (topic name in some section) leads to viewtopic.php (should be viewtopic.php?id=28).

?

Links.... where? Can you give me a screenshot or something? I'm not sure what you're talking about.

1,355

(7 replies, posted in Feature requests)

bruffellz wrote:

I saw that, I just want one forum to be blocked not all of them.

It does not block all forums - you specify a forum ID and it only blocks that one.

1,356

(7 replies, posted in Feature requests)

Give this a shot:
http://punbb.org/forums/viewtopic.php?id=9359

1,357

(2 replies, posted in PunBB 1.2 troubleshooting)

FYI, this can also be caused by your browser not sending a referrer header (I believe Norton firewall does this), so you might want to check into that.

1,358

(1 replies, posted in Feature requests)

Give this a try:
http://punbb.org/forums/viewtopic.php?id=9359

1,359

(1 replies, posted in PunBB 1.2 show off)

Nice... I like the simple design.

The mod you are using appears to be Mediator's Easy Poll.

Its Punres thread has several fixes, some of them should probably help you: http://punres.org/viewtopic.php?id=542

1,361

(6 replies, posted in Feature requests)

Admin>Options "Server timezone" ? I'm not sure if that's what you're looking for or not.

1,362

(6 replies, posted in PunBB 1.2 troubleshooting)

I'm not exactly sure.

1,363

(6 replies, posted in PunBB 1.2 troubleshooting)

Assuming forum A and forum B are on the same domain, the problem is probably (though maybe not) that you have two cookies with the same name from the same domain.

If you put forum A and forum B each on their own subdomain that might solve your problem. You also might be able to mod PunBB to have a different cookie name.

Hope that's helpful.

1,364

(4 replies, posted in PunBB 1.2 discussion)

surboomer wrote:

thanks Paul, I just read about Jabber, any other chatting software use Jabber?

Yes, there are many clients made specifically for Jabber, and many multiprotocol clients such as Gaim support it as well.

1,365

(6 replies, posted in PunBB 1.2 show off)

Nice! Love the style. Is it custom?

Also I'd suggest that votes could skip the confirmation if the tag already exists.

Nice mod. I intalled it on my forums. However, I found a couple of bugs.

Around here (I'd give a line number but mine are out of sync because I had to make it play nice with the invitations mod):

// find the users who have been tagged with it

You need to insert the DB prefix in the query like so:

FROM ". EXPERTISE_LINKS_TABLE ." l, ".$db->prefix."users u

As you do around here:

// get current tagging users data for this user, if any

Replace query with:

$sql = "SELECT DISTINCT u.id, u.username FROM ".$db->prefix."users u, ". EXPERTISE_LINKS_TABLE ." l

Otherwise, this pretty much doesn't work if you use a DB prefix for your forum.

I'm not sure why, but in the transfer screen after adding a tag there is the following error:

Warning: Invalid argument supplied for foreach() in..... .......on line 675

Also for anyone with Tobi's invitations mod, edit expertise.php:

Find:

define('PUN_ROOT', './');
require PUN_ROOT.'include/common.php';
require PUN_ROOT.'expertise_include.php';
require PUN_ROOT.'lang/'.$pun_user['language'].'/expertise_lang.php';
require PUN_ROOT.'lang/'.$pun_user['language'].'/profile.php';

After, add:

require PUN_ROOT.'lang/'.$pun_user['language'].'/invitation.php';

Also, some suggestions:
- Make already confirmed tags viewable in the profile, then have a link just to add them
- Let guests view confirmed tags
Like you said in the notes:
- Some kind of notification when you have new tags waiting
- Administrator button to remove unused tags from the database
And some picky OCD things:
- Move expertise_include.php to /include
- Rename expertise_lang.php to just expertise.php
(Those don't really matter but they bug me)

Otherwise, great mod, thanks for making it. It looks like you put a lot of effort into it.

1,368

(1 replies, posted in PunBB 1.2 troubleshooting)

"the index is kinda messy"?

I take it you want to remove the "Moderated by" links.

Find this in index.php:

if ($cur_forum['moderators'] != '')
    {
        $mods_array = unserialize($cur_forum['moderators']);
        $moderators = array();

        while (list($mod_username, $mod_id) = @each($mods_array))
            $moderators[] = '<a href="profile.php?id='.$mod_id.'">'.pun_htmlspecialchars($mod_username).'</a>';

        $moderators = "\t\t\t\t\t\t\t\t".'<p><em>('.$lang_common['Moderated by'].'</em> '.implode(', ', $moderators).')</p>'."\n";
    }

And replace it with the following:

/* if ($cur_forum['moderators'] != '') // Commented out "Moderated by"
    {
        $mods_array = unserialize($cur_forum['moderators']);
        $moderators = array();

        while (list($mod_username, $mod_id) = @each($mods_array))
            $moderators[] = '<a href="profile.php?id='.$mod_id.'">'.pun_htmlspecialchars($mod_username).'</a>';

        $moderators = "\t\t\t\t\t\t\t\t".'<p><em>('.$lang_common['Moderated by'].'</em> '.implode(', ', $moderators).')</p>'."\n";
    } */

I've done this on my forum too. If for some reason you ever want to get the links back. remove the "/*" and "*/".

Hope this is what you wanted.

Oh, and if it helps, my phpinfo() says: "Client API version     3.23.55"

Perhaps I just have an outdated DB version? I dunno.

Ok, I hope this is all of them:

Easy Poll (slightly modified)
Invitations
Prvate Message System
Admin Logs
Change Page Links 1.0.1
You Can See Profile! 2.0
Spam Protection 1.1
Small "Security' Code from http://punbb.org/forums/viewtopic.php?id=8637
Referral Count 1.0.0 (slightly modified)
Group Change Security 1.0 (slightly modified)
Top 20 Most Active Users from http://punbb.org/forums/viewtopic.php?id=7828 (slightly modified)
PunBB and BBClone from http://punbb.org/forums/viewtopic.php?pid=50532 (I've changed it around a bit from my original post though)
Some fixes for the poll mod: http://punres.org/viewtopic.php?pid=2953#p2953    http://punres.org/viewtopic.php?pid=2993#p2993    http://punres.org/viewtopic.php?pid=4046#p4046    http://punres.org/viewtopic.php?pid=4135#p4135
Easy BBCode (slightly modified)
RSS Autodiscovery from http://punbb.org/forums/viewtopic.php?id=8566
Extra Boxes 1.0.2
PBB Gallery 2.0 Beta (slightly modified)
Ranks With Stars from http://punbb.org/forums/viewtopic.php?id=7293 (slightly modified)
Forward Posts from http://punbb.org/forums/viewtopic.php?id=7646
Sig Once Per Topic from http://punbb.org/forums/viewtopic.php?pid=42099#p42099
Quick Logon Box from http://punres.org/doku.php?id=how-tos:a … the_header (modified)
Strikethrough BBCode

I'm not sure if any of these would conflict or not.

Also I might mention that I get the same error from your invitations mod (http://punbb.org/forums/viewtopic.php?pid=57831#p57831).

Tobi wrote:

I can help you if and only if you specify  and doing some other things smile

Plus information if you have other mods installed maybe....

Problem is, I can't really figure out a pattern besides logging in. If my memory serves me correctly, it also occured when viewing a topic without having first viewed the index (ex via RSS).

I'll try to dig up a list of mods and some more information.

Any chance that you can pop onto #punbb at irc.quakenet.org?

1,372

(3 replies, posted in PunBB 1.2 troubleshooting)

I don't know if it will fix your problem or not, but you might try rebuilding the search index (Admin>Maintenance).

If you've added, edited or removed posts manually in the database or if you're having problems searching, you should rebuild the search index.

1,373

(18 replies, posted in General discussion)

Merry Christmas to you to! Anyone doing anything interesting on their forums for Christmas?

briank wrote:

works great! i wish it had logged stuff on moderators too, to see who moved what thread, and where, perhaps it will be included in the next version.

I agree. Any way to implement this?

Logging in and doing some other things (not sure what exactly) yields this error:

An error was encountered
File: /mnt/web_g/d20/s22/a000skup/www/awesome/forum/include/functions.php
Line: 198

PunBB reported: Unable to insert into user statistics

Database reported: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '.43.41)' at line 1 (Errno: 1064)

Please help! Thank you.