It would be handy if you'd specify how much posts do you expect on your forum. You get to hundreds of MBs only if you have forum with tens of thousand post
2 2012-01-10 23:41
Re: Real posts count (20 replies, posted in Supported extensions)
Weird... what db engine do you use in your forum?
3 2012-01-10 16:34
Re: Current post count (2 replies, posted in PunBB 1.4 troubleshooting)
I've created little extension for you
4 2012-01-10 16:30
Topic: Real posts count (20 replies, posted in Supported extensions)
Real posts count extension changes PunBB's post counter so that it will lower the post count when post is deleted.
//Note: Extension recounts users posts when installed
5 2012-01-02 21:29
Re: Punbb's user variables (5 replies, posted in Discussions)
Are you sure you're using salt from the right user?
6 2011-12-30 16:45
Re: [Extension release] Active Topics (20 replies, posted in PunBB 1.3 extensions)
7 2011-12-29 03:07
Re: How to limit IP address ranges? (allow US-only registration?) (5 replies, posted in Discussions)
@kagaku: Well if that won't help, you may always try captcha
They won't google this
8 2011-12-29 01:14
Re: Missing argument 2... for 'generate_avatar_markup' (6 replies, posted in PunBB 1.4 troubleshooting)
Ok, so if I haven't done any typo then
changing this (line 187)
\'SELECT\' => \'a.rate, t.subject as topicsubj, p.topic_id, u.email, u.title, u.url, u.location, u.signature, u.email_setting, u.num_posts, u.registered, u.admin_note, p.id, p.poster AS username, p.poster_id, p.poster_ip, p.poster_email, p.message, p.hide_smilies, p.posted, p.edited, p.edited_by, g.g_id, g.g_user_title, o.user_id AS is_online\',
to this
\'SELECT\' => \'a.rate, t.subject as topicsubj, p.topic_id, u.email, u.title, u.url, u.location, u.signature, u.email_setting, u.num_posts, u.registered, u.admin_note, u.avatar, u.avatar_width, u.avatar_height, p.id, p.poster AS username, p.poster_id, p.poster_ip, p.poster_email, p.message, p.hide_smilies, p.posted, p.edited, p.edited_by, g.g_id, g.g_user_title, o.user_id AS is_online\',
and this (line 278)
$forum_page[\'avatar_markup\'] = generate_avatar_markup($cur_post[\'poster_id\']);
to this
$forum_page[\'avatar_markup\'] = generate_avatar_markup($cur_post[\'poster_id\'], $cur_post[\'avatar\'], $cur_post[\'avatar_width\'], $cur_post[\'avatar_height\'], $cur_post[\'poster\']);
in manifest.xml should do the trick
BTW this will make the extension crash on 1.3. so I suggest re-release it after these changes
BTW2 for this code to work you have to completely reinstall the extension, since it does create new file I haven't checked the code, but if it stores anything in db you'll have to backup that, or do manually changes in file ./toprated.php
9 2011-12-28 15:55
Re: Missing argument 2... for 'generate_avatar_markup' (6 replies, posted in PunBB 1.4 troubleshooting)
@Dr. Deejay: $img_size was defined in the if statement (it's not really common, but you can do that).
@KeyDog: It isn't bug, but little incompatibility of this extension with 1.4.1. Information about avatars width / height are now stored in database, instead of counting each time when rendering.
//If I'll have some time to spare in the evening I might fix that, but you may try as well You can find variables you need in punbb_users table
10 2011-12-28 11:04
Re: Unable to fetch guest information expose table structure. (1 replies, posted in PunBB 1.4 bug reports)
Hi,
What reason do you have for deleting Anonymous user? If you want to hide forum for unregistered users you can do that in Administration > Start > Forums > (Edit forum), where you can disable Guest's rights for reading
And being worried about this error message, that it compromises security, when you speak about open source That's kinda non sense, don't you think?
11 2011-12-27 14:08
Re: Adding a new page in the admin panel (2 replies, posted in PunBB 1.4 additions)
Hi,
look in source code of Akismet extension. It creates another page in "Managment" section. It should give you some clue
12 2011-12-26 01:25
Re: Keyword-based autoban with post limit (13 replies, posted in Feature requests)
@KeyDog: Yep, I'm also glad for dimkalinux and hcs, but they aren't Informer employees, are they?
13 2011-12-26 01:03
Re: Keyword-based autoban with post limit (13 replies, posted in Feature requests)
@KeyDog: Yea, that smiley is nice They even had a blog post about that. Though I don't blame them. Automattic created one of the most successful open source CMS in the world, it's still better than some company which buys open source forum and after some time leaves it without support (guess which Russian company do I have on mind? )
14 2011-12-26 00:45
Re: Keyword-based autoban with post limit (13 replies, posted in Feature requests)
They are a bit too much in ones face about money (sad smiley face when giving 0$ & priority on paid accounts) and getting an API from them... (granted: because of their popularity!) I hope we can implement a solution that a.) doesn't need an API (like URL Checker extension)
But they are still free for personal blogs, so I don't think forum could be much different. Quite active forum might get how much? 500 posts a day? If we check only users with less than 10 posts it could be how many? 20, 30 request a day? That (I bet) is still in their free plan
15 2011-12-25 22:23
Re: Cash Mod (1 replies, posted in Feature requests)
I'm little bit short on time (ok, and a quite a bit lazy too ), so I can't tell you whether I'm gonna alter my cash extension, but most of 1.3 extensions work on 1.4.1 as well, so I suggest you to give it a try (and if you eventually send me feedback on what's wrong it might encourage me to fix it... )
16 2011-12-25 21:47
Re: Punbb's user variables (5 replies, posted in Discussions)
Check ./include/functions.php, function cookie_login()
17 2011-12-25 21:45
Re: Keyword-based autoban with post limit (13 replies, posted in Feature requests)
Why reinvent the wheel? Akismet does this with much better accuracy and we already have extension for it. (btw Rich Pedley's version still works, though I'd recommend to use the one I posted at the end of topic, since Rich wasn't here for two years...)
18 2011-12-25 21:40
Re: [extension release] Akismet 2.0 (14 replies, posted in PunBB 1.3 extensions)
I've checked the extension whether is still compatible with 1.4.1 and since it is, I've just made few small changes and here's the "new" version.
19 2011-12-25 16:38
Re: [Extension release] Active Topics (20 replies, posted in PunBB 1.3 extensions)
Changelog:
Haven't really done any changes as it wasn't necessary, just changed <maxtestedversion> to 1.4.1
20 2011-12-25 01:12
Re: SubForums (6 replies, posted in PunBB 1.4 troubleshooting)
It is not possible by default, but this extension might work
21 2011-12-25 01:11
Re: How to turn off maintenance mode? (7 replies, posted in PunBB 1.4 troubleshooting)
@hoang83vu: Delete ./cache/cache_config.php file
22 2011-12-21 14:23
Re: Post Owner Changer (1 replies, posted in Discussions)
Hi,
you might try to check KeyDog's extension directory, although I don't remember ever seeing such extension. This isn't really common task.
But you of course can always use PhpMyAdmin or Adminer to change author name (and his id) directly in database
23 2011-12-21 09:50
Re: PhpBB3 to punbb (7 replies, posted in PunBB 1.4 troubleshooting)
@epicguy11: Being little more specific could be handy... For example which versions of PunBB and PhpBB you tried to convert? Did it write some kind of error? What was the output of operation (did it write 100% to all despite doing anything, or some FATAL error, blank page... etc.?)
25 2011-09-27 08:35
Re: [Extension release] StopForumSpam.com Antispam (30 replies, posted in PunBB 1.3 extensions)
It's possible that SFS servers were down, when the user posted the message (extension waits max 10 seconds for SFS servers to respond)