config.php
6,327 2005-12-31 18:14
Re: I can't show avatar (3 replies, posted in PunBB 1.2 troubleshooting)
What error do you get?
6,328 2005-12-31 16:10
Re: How do I ..... (1 replies, posted in PunBB 1.2 troubleshooting)
Template files
include/template/main.tpl
6,329 2005-12-30 17:03
Re: [Integration] Padding in FF - Pulling hair out! (6 replies, posted in PunBB 1.2 troubleshooting)
Looks fine to me (although I'm not logged in)...
6,330 2005-12-30 01:23
Re: 2 members called Paul on this forum ? (8 replies, posted in PunBB 1.2 bug reports)
Ah, I see: apparently, htmlentities (like & #80; (minus the space) can be used, causing people to have names that look identical)
Edit: Apparently, it works in more than usernames
6,331 2005-12-29 21:11
Re: fetch guest info (9 replies, posted in PunBB 1.2 troubleshooting)
bah
repair table punbb_users
sorry
6,332 2005-12-29 19:17
Re: fetch guest info (9 replies, posted in PunBB 1.2 troubleshooting)
Same deal, but replace "users" with "posts"
6,333 2005-12-28 18:30
Re: fetch guest info (9 replies, posted in PunBB 1.2 troubleshooting)
You need to repair your users table
You can do that via phpMyAdmin, via the DB management plugin, or by running the SQL command:
repair punbb_users;
6,334 2005-12-17 01:58
Re: Users in 2 Groups? (36 replies, posted in PunBB 1.2 troubleshooting)
lol, very nicely said
And welcome
6,335 2005-12-16 23:53
Re: Users in 2 Groups? (36 replies, posted in PunBB 1.2 troubleshooting)
I wasn't talking to you, was I? Are you the spokesman for the group?
Well, no, but he's a moderator here, the person who runs MyPunBB.org, and a very active poster here: in other words, he knows what he's talking about.
You might want to read this post: http://punbb.org/forums/viewtopic.php?pid=4901#p4901
Or this page: http://punbb.org/about.php
I use PunBB because it's relatively light, but the lack of functions fucking pisses me off.
relatively light = lack of functions
The fact that multiple people request something, yet it never gets implimented, is also irksome. Oh, it is completely possible for a software package to be light while having useful features. It's more like Rickard just doesn't want to fuck with coding what people really want.
Or that mob rule is never the right way to run anything
If you knew how to read, you'd also see that I would get vB, but I'm not willing to pay for it.
Then you have no excuse to complain: you get what you pay for
6,336 2005-12-16 23:30
Re: punbb adsense advertisement mod? (43 replies, posted in PunBB 1.2 modifications, plugins and integrations)
You can change it if you want to make it appear every 10 posts: however, keep in mind that you're allowed a max of 3 ad blocks per page: someone with, say, 40 posts per page (if that's possible) would have 4.
6,337 2005-12-16 22:18
Re: subscription to forums (7 replies, posted in Feature requests)
Except it would be useless for a good deal of forums, and thus bloat
If you want it, you can find a mod or just use an RSS feed
6,338 2005-12-16 11:30
Re: Restricted access (3 replies, posted in PunBB 1.2 troubleshooting)
Yes: make it so Guests can't read, turn off registration, and download the User Management plugin (so you can manually create accounts)
6,339 2005-12-16 11:29
Re: invalid admin email (14 replies, posted in PunBB 1.2 troubleshooting)
I'm not mocking them, it's obvious false advertising
I'd ask them to take a look at it and figure it out
if (strlen($email) > 50 || !preg_match('/^(([^<>()[\]\\.,;:\s@"\']+(\.[^<>()[\]\\.,;:\s@"\']+)*)|("[^"\']+"))@((\[\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\])|(([a-zA-Z\d\-]+\.)+[a-zA-Z]{2,}))$/', $email))
error('The administrator e-mail address you entered is invalid. Please go back and correct.');
That's the if statement, it (should be) the same thing as in email.php
6,340 2005-12-16 11:25
Re: subscription to forums (7 replies, posted in Feature requests)
21 * 20 = 420
420 emails is still a large number
6,341 2005-12-16 00:19
Re: Figuring out if a username is banned? (14 replies, posted in PunBB 1.2 troubleshooting)
Stolen from get_title(), so it may not work perfectly
global $pun_bans, $lang_common;
static $ban_list;
// If not already built in a previous call, build an array of lowercase banned usernames
if (empty($ban_list))
{
$ban_list = array();
foreach ($pun_bans as $cur_ban)
$ban_list[] = strtolower($cur_ban['username']);
}
// If the user is banned
if (in_array(strtolower($user['username']), $ban_list))
$user_title = $lang_common['Banned'];
6,342 2005-12-16 00:16
Re: Make a signature appear only once per thread? (1 replies, posted in PunBB 1.2 troubleshooting)
I knew I'd done this before!
http://punbb.org/forums/viewtopic.php?pid=42099#p42099
Tell me if it doesn't match current code and I'll write it again
6,343 2005-12-15 22:34
Re: Smiles Uploader? (6 replies, posted in Feature requests)
Erm, he posted < 1 hour after your post
You found the answer before you posted?
6,344 2005-12-15 20:43
Re: mod install failed halfway through, now "unable to fetch topic list" (1 replies, posted in PunBB 1.2 troubleshooting)
Probably unrelated to the mod install, you need to repair your posts table (can be done via the MySQL command: repair posts)
6,345 2005-12-15 17:48
Re: invalid admin email (14 replies, posted in PunBB 1.2 troubleshooting)
Install any PHP software, No limitations.
That's a lie if they block .tpl files
6,346 2005-12-15 17:46
Re: Smileys and site integration bug (8 replies, posted in PunBB 1.2 bug reports)
Erm, using PUN_ROOT like that wouldn't work
If I was on forums.punbb.org, the URL would become forums.punbb.org/home/account/forums/[insert rest of URL here]
o_base_url would work
6,347 2005-12-15 11:51
Re: Moving PunBB from one domain to another (9 replies, posted in PunBB 1.2 troubleshooting)
You can import a backup into phpMyAdmin, I do it all the time
6,348 2005-12-15 11:50
Re: invalid admin email (14 replies, posted in PunBB 1.2 troubleshooting)
No, but it could also be that they're killing certain PHP functions, causing the check to fail
6,349 2005-12-15 11:49
Re: subscription to forums (7 replies, posted in Feature requests)
Lets use this site as an example
http://punbb.org/forums/search.php?action=show_24h gives me 24 topics. Which means there are at least 24 new posts, but a lot more in reality. Lets just say 30, which is probably too low.
Total number of registered users: 5719
5719 * 30 = 171,570
That is the number of emails that this site would send per day
Plus, no one has a legitimate need to see all the posts in this forum: would you want to see the stuff in the Test forum?
In other words, yes, it is clutter, since sending out 5719 emails for every post consumes a lot of resources
6,350 2005-12-14 21:39
Re: Search [img], and img display troubleshooting (7 replies, posted in PunBB 1.2 troubleshooting)
1. I don't think so
2. That means the image couldn't be loaded
like here. Just a timeout on the user's end