You're 1 version behind according to the footer of your page
(No, that won't fix your problem, but you should keep upgraded)
7,276 2005-03-24 15:59
Re: Register Error (7 replies, posted in PunBB 1.2 bug reports)
7,277 2005-03-24 14:08
Re: [Release] Database Management Plugin (84 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Rather large bug with this:
I just tried restoring a backup (full, no gzip). I start getting errors with the forum_perms table. When I checked it out, I realized the problem: Rickard made both forum_id and group_id primary keys, but the backup only had forum_id set as primary_key when it was creating the table (edit: it does the same with structure as well).
7,278 2005-03-24 12:40
Re: We've translated PunBB 1.2.* into Lithuanian! (7 replies, posted in PunBB 1.2 discussion)
Smartys wrote:http://diskusijos.e-vaizdas.net/
Nice removal of the copyrightIn fact not very nice. An empty table is not nice at all. It seems like something missing.
Ludo,
It was sarcasm Ludo, not only because it wasn't there but because the table was still there without anything in it
7,279 2005-03-24 11:28
Re: We've translated PunBB 1.2.* into Lithuanian! (7 replies, posted in PunBB 1.2 discussion)
http://diskusijos.e-vaizdas.net/
Nice removal of the copyright
Edit: But then, you're also not running 1.2.x there either
7,280 2005-03-23 15:09
Re: Error message in istalation... (11 replies, posted in PunBB 1.2 troubleshooting)
so the file is uploaded correctly?
7,281 2005-03-22 20:41
Re: CSS Question for Paul (16 replies, posted in PunBB 1.2 discussion)
Well, you might also think you're using old, outdated stylesheets
7,282 2005-03-22 16:27
Re: How do I install the language pack? (7 replies, posted in PunBB 1.2 troubleshooting)
The admin section isn't translatable.
The rest of the board is
7,283 2005-03-22 01:49
Re: Global Moderation - 1.0 (6 replies, posted in PunBB 1.2 modifications, plugins and integrations)
I haven't checked the source-code, but maybe you can answer this:
does "global moderator" mean they have mod access to any forum (which I wouldn't like since I have an admin only board) or does it mean only to the forums their group is given access to?
7,284 2005-03-21 13:02
Re: pun_hash problem in install.php (4 replies, posted in PunBB 1.2 bug reports)
Ah, I see where he's confused
setcookie($cookie_name, serialize(array($user_id, md5($cookie_seed.$password_hash))), $expire, $cookie_path, $cookie_domain, $cookie_secure);
$password_hash if you had SHA1 would be SHA1 and THEN would be md5 hashed with the $cookie_seed
In check_cookies
if (!isset($pun_user['id']) || md5($cookie_seed.$pun_user['password']) !== $cookie['password_hash'])
The cookie password hash is md5($cookie_seed.$password_hash)
The check is md5($cookie_seed.$pun_user['password'])
As long as the password is hashed properly in the database (connor is right in that if you have SHA1 passes and then downgrade you're screwed) the check should work
7,285 2005-03-20 11:42
Re: An error was encountered (7 replies, posted in PunBB 1.2 troubleshooting)
I checked out his site, it says he doesn't support it (I went directly to the mysqli file)
7,286 2005-03-19 18:41
Re: An error was encountered (7 replies, posted in PunBB 1.2 troubleshooting)
Talk to the people who host the site?
7,287 2005-03-19 17:54
Re: An error was encountered (7 replies, posted in PunBB 1.2 troubleshooting)
7,288 2005-03-19 15:22
Re: modérators can not create forums ? (13 replies, posted in PunBB 1.2 troubleshooting)
Connorhd is right
7,289 2005-03-19 11:28
Re: Split topics (36 replies, posted in PunBB 1.2 modifications, plugins and integrations)
lol
I'm only doing this because no one else wanted to, and all mine is is a patch to the old one so it works for the new
So, since yours works for 1.2 and has merging, I think I'll let you come up with the new mod and spend my vacation elsewhere
7,290 2005-03-19 03:57
Re: modérators can not create forums ? (13 replies, posted in PunBB 1.2 troubleshooting)
Meh
I meant to change it to pun_mod
and this just gives access to admin_forums.php to mods
7,291 2005-03-19 02:57
Re: modérators can not create forums ? (13 replies, posted in PunBB 1.2 troubleshooting)
Mmm, isn't this easy?
You just mod admin_forums.php to work for mods: should only be a line of code
Edit: Yup, a simple mod to make it show up on the admin sidebar thing and work for mods
admin_forums.php
Find:
if ($pun_user['g_id'] > PUN_ADMIN)
message($lang_common['No permission']);
Replace with
if ($pun_user['g_id'] > PUN_ADMIN)
message($lang_common['No permission']);
include/common_admin.php
Find:
<?php endif; ?><?php if ($is_admin): ?> <li<?php if ($page == 'forums') echo ' class="isactive"'; ?>><a href="admin_forums.php">Forums</a></li>
Replace with:
<?php endif; ?> <li<?php if ($page == 'forums') echo ' class="isactive"'; ?>><a href="admin_forums.php">Forums</a></li>
7,292 2005-03-19 02:17
Re: PunBB 1.2.4 (38 replies, posted in News)
Oh, Rickard: you might want to word the announcement box a little differently. It's been the same since 1.2.2 and, frankly, if I didn't have an account and were just checking, I might miss it
7,293 2005-03-19 01:16
Topic: Mass Closing/Opening of Topics (1 replies, posted in PunBB 1.2 bug reports)
Doesn't work
The cause seems to be the
implode(',', array_keys($topics))
bit of the UPDATE query (array_keys is already done in array_map before, but since I've never used either I dunno if that means anything). Removing array_keys from the query makes it get the correct ids.
7,294 2005-03-19 01:00
Re: PunBB 1.2.4 (38 replies, posted in News)
hdiffs are wonderful for that case
7,296 2005-03-18 23:31
Re: PunBB 1.2.4 (38 replies, posted in News)
Compare the files in some manner?
(I don't think there were CSS changes for this version)
Lemme check something...
Edit: It appears that if you download the "changed files only" and there's a stylesheet there, there was a change
7,297 2005-03-18 23:12
Re: PunBB 1.2.4 (38 replies, posted in News)
The one that allowed you to set a user's password to '' or NULL, can't remember which
http://seclists.org/lists/bugtraq/2005/Feb/0499.html
A remote attacker without an account can set the password
of any user on the system to NULL, effectivley shuting
them out of the system.
Very interesting combo that made (with the other one in profile.php he posted there)
7,298 2005-03-18 23:01
Re: PunBB 1.2.4 (38 replies, posted in News)
Upgrading time, goodie
btw Rickard: I just did some looking up on the bug tracking sites. It seems John Gumbell deserves the credit for the profile.php bug and null activation keys, he found it in 1.2.1
7,299 2005-03-18 21:40
Re: óÿçâèìîñòü â ôîðóìå punBB 1.2.3 (17 replies, posted in PunBB 1.2 bug reports)
Don't forget to fix the Jabber/(I guess email too) XSS thing
7,300 2005-03-18 19:42
Re: sharing avitar directory (19 replies, posted in PunBB 1.2 troubleshooting)
lol, you replace the whole $pun_config bit (it shouldn't be there)