Mmm, they say PunBB's latest version is 1.2
7,251 2005-04-08 00:11
Re: Invision Power Services acquires The Forum Insider (3 replies, posted in PunBB 1.2 discussion)
7,253 2005-04-07 10:29
Re: DB Management Plugin (3 replies, posted in PunBB 1.2 troubleshooting)
1. Just the PHP file
2. Yes
7,254 2005-04-06 17:25
Re: Smilies not showing up properly (2 replies, posted in PunBB 1.2 troubleshooting)
Working fine when I look...
Disabled in your preferences perhaps?
7,255 2005-04-05 18:47
Re: Security of Pun's authentification (58 replies, posted in General discussion)
Connorhd
Simply, we decided to greatly improve it .....so I ask You ....is it really needed to improve it?...what can we improve and how
You decided to improve it, so you want to know how?
I think you might have the steps backwards, you should have an idea in mind before deciding to do something
7,256 2005-04-05 16:08
Re: Rank Image? (22 replies, posted in PunBB 1.2 discussion)
$pun_user['g_id'] I think
7,257 2005-04-05 10:31
Re: [Release] Database Management Plugin (84 replies, posted in PunBB 1.2 modifications, plugins and integrations)
CREATE TABLE `forum_perms` ( `group_id` int(10) NOT NULL default '0', `forum_id` int(10) NOT NULL default '0', `read_forum` tinyint(1) NOT NULL default '1', `post_replies` tinyint(1) NOT NULL default '1', `post_topics` tinyint(1) NOT NULL default '1', PRIMARY KEY (`forum_id`,`group_id`) ) TYPE=MyISAM;
goes to
CREATE TABLE forum_perms( group_id int(10) NOT NULL, forum_id int(10) NOT NULL, read_forum tinyint(1) DEFAULT '1' NOT NULL, post_replies tinyint(1) DEFAULT '1' NOT NULL, post_topics tinyint(1) DEFAULT '1' NOT NULL, PRIMARY KEY (group_id) );
where the hell is secondary key?
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).
You happen to have the primary key as group_id instead, but it's the same issue
7,258 2005-04-04 16:27
Re: Gizoogle (13 replies, posted in General discussion)
ScottyWZ.COM
Go ta URL:
ScottyWZ.COM Home
Home Section
ScottyWZ.COM Forums
Contact ScottyWZ.COM
ScottyWZ.Betas
ScottyWZ.COM Web site Pusha
9-11 Commemorative Page
Main Section
Free Downloads
The Monthly Scotty
ScottyWZ.COMic Strip
Tips & Facts
Wallpapa n Windows
XP Themes from XPTheme.INFO
Links
Solas Pages Section
Solas Info
Solas 7 th Album Info
Solas Interview
Solas-Related Links
ScottyWZ.COM Solas Fan Clizzay
Search Section
Search ScottyWZ.COM
Search the Web with Google
Legal Section
Copyright Information
Terms of Use
Welcome ta ScottyWZ.COM!
This Web site has tips, fizzle downloads , 411 `bout n an interview wit tha band Solas, Web Search wit Google , n links ta rappa Web sites .
So, select a link ta tha tizzle bottom, or left ta continue . You gotta check dis shit out yo! Also, try typ'n a URL (izzy address) in tha Go ta URL box at tha top of tha page!
http://www.scottywz.com/index.html
Copyright © 2005 by Scotty Wallace-Zeid. ScottyWZ.COM is a personal Web site fo' sheezy. To use ScottyWZ.COM, you miznust agree ta ScottyWZ.COM's Terms of Use .
ScottyWZ.COM is hosted by Globat, LLC .
7,259 2005-04-03 14:48
Re: Viewing Posts - Possible Bug? (8 replies, posted in PunBB 1.2 bug reports)
That's wierd, I can use Firefox fine with AOL (with dialup and with DSL/router).
7,260 2005-04-03 03:54
Re: Error: Unable to insert group forum permissions. (2 replies, posted in PunBB 1.2 troubleshooting)
I had this problem
Check the forum_perms table, you'll probably have either forum_id or group_id NOT set as primary keys. They both must be.
7,261 2005-03-30 21:30
Re: CVSup for PunBB? (10 replies, posted in PunBB 1.2 discussion)
- plus, if there's a security fix, I can have it right when Rickard commits it.
Which he usually does right before releasing a new version, so that people aren't tipped off in advance of him offering a new release
7,262 2005-03-30 11:22
Re: New Plugin Idea [Check for Bogus Email Accounts] (5 replies, posted in PunBB 1.2 modifications, plugins and integrations)
I know a user validates their account by having an email sent to them. That is what I'm referring to - they use a valid account to 'get in' and validate the registration process, but come back and edit their profile with a bogus email address, after-the-fact.
The user also validates their email every time they change it is what Rickard is saying
7,263 2005-03-29 16:20
Re: PunBB reported: Unable to fetch topic info (1 replies, posted in PunBB 1.2 bug reports)
The subscriptions table should have two columns: user_id and topic_id
Both primary keys, both int(10) unsigned with a default 0.
Your subscription table is missing user_id?
7,264 2005-03-29 01:42
Re: Add a newsgroup to your forum? (4 replies, posted in PunBB 1.2 troubleshooting)
Something similar to this?
7,265 2005-03-27 22:47
Re: [Request] Where a user is online (22 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Mmm, maybe add a bit to the online table about last_page, make the function add that data in, and have a page that displays what you want from that?
7,266 2005-03-27 12:32
Re: How to check all boxes? (3 replies, posted in General discussion)
I suggested it a while ago I think, I'll find the post
Edit: http://punbb.org/forums/viewtopic.php?id=4600
Rickard was evil
7,267 2005-03-27 12:25
Re: Plugin name cannot be named "something_Mod_2.0.php" (15 replies, posted in PunBB 1.2 bug reports)
lol, good point :-/
I can't replicate the admin loader exploit using (\S*?)
7,268 2005-03-27 01:20
Re: Plugin name cannot be named "something_Mod_2.0.php" (15 replies, posted in PunBB 1.2 bug reports)
That doesn't work for me either
That line for me:
if (!preg_match('/^AM?P_(\S*?)\.php$/i', $plugin))
The file: AMP.Example.php
Someone tell me what I'm doing wrong?
7,269 2005-03-27 01:17
Re: Plugin name cannot be named "something_Mod_2.0.php" (15 replies, posted in PunBB 1.2 bug reports)
I'll test and see if it gives enough to reintroduce the exploit
7,270 2005-03-27 00:19
Re: Global Announcements - 1.0.5 (26 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Erm, none of those alter footer.php
Next time you get the error, paste the full thing?
7,271 2005-03-26 23:59
Re: Plugin name cannot be named "something_Mod_2.0.php" (15 replies, posted in PunBB 1.2 bug reports)
If I'm changing the file correctly, neither is fixing it
7,272 2005-03-26 22:31
Re: Plugin name cannot be named "something_Mod_2.0.php" (15 replies, posted in PunBB 1.2 bug reports)
That has to do with the admin_loader bug I found, and Rickard's fix for it. Let me check the code...
Edit: Knowing very little about regular expressions, I can't come up with a working one.
The problem expression here is:
if (!preg_match('/^AM?P_(\w*?)\.php$/i', $plugin))
Now, if someone can find a way to make it work here and it doesn't re-create the exploit I found, I'm sure Rickard would be more then happy to put it in...
7,273 2005-03-25 14:53
Re: Download files to forum (6 replies, posted in Feature requests)
It hasn't been released for 1.2.x yet
7,274 2005-03-25 01:56
Re: [Release] Database Management Plugin (84 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Since it messes up forum permissions so they don't work, it is
7,275 2005-03-24 22:24
Re: Banned user cannot log out (6 replies, posted in PunBB 1.2 troubleshooting)
It is the way to prevent banned users from creating a new account