1,201 2008-01-30 11:53
Re: Redirect time - Why 0 is not recomended? (2 replies, posted in General discussion)
1,202 2008-01-30 11:49
Re: Forums (1 replies, posted in PunBB 1.3 troubleshooting)
I wasn't able to replicate the CSRF issue because I found another issue with the form, but hopefully the fix I committed should fix both.
1,203 2008-01-30 11:48
Re: Is PunBB 1.2 able to be updated to PunBB 1.3 Beta? (1 replies, posted in PunBB 1.3 troubleshooting)
Yes, using the db_update.php script in the extras folder
1,204 2008-01-30 11:48
Re: [bug] Timezone change (3 replies, posted in PunBB 1.3 troubleshooting)
The admin timezone is the timezone show to guests and the default for new users. It has no effect on logged in users.
1,205 2008-01-30 11:46
Re: My few things (6 replies, posted in PunBB 1.3 troubleshooting)
2. The reason is that there's no need for the closing tag and putting one there makes it easier for people to accidentally add whitespace which is echoed out and causes errors.
1,206 2008-01-30 11:45
Re: Adding category... (2 replies, posted in PunBB 1.3 troubleshooting)
And fixed
1,207 2008-01-30 03:45
Re: Fancy URL's (50 replies, posted in PunBB 1.3 troubleshooting)
Well, there's nothing I can do I'm afraid. Your host controls your servers, not me. All I can do is point out that if .htaccess files were enabled and being read, it would be working right now.
1,208 2008-01-30 03:36
Re: Fancy URL's (50 replies, posted in PunBB 1.3 troubleshooting)
Oh. Then neither of your sites have working htaccess files
1,209 2008-01-30 03:35
Re: A multiple URI question (15 replies, posted in Programming)
Use fsockopen instead of fopen, that allows you to set a timeout
1,210 2008-01-30 03:33
Re: Fancy URL's (50 replies, posted in PunBB 1.3 troubleshooting)
It just started working on your host as well.
1,211 2008-01-30 03:11
Re: Fancy URL's (50 replies, posted in PunBB 1.3 troubleshooting)
I'm saying that Apache is not reading your .htaccess files. If it were, rewriting would be working and I would get a 403 error when trying to browse to the cache directory.
1,212 2008-01-30 03:09
Re: Fancy URL's (50 replies, posted in PunBB 1.3 troubleshooting)
You'll have to talk to your host, they're the ones who can help you.
1,213 2008-01-30 03:06
Re: Signature (3 replies, posted in PunBB 1.3 troubleshooting)
Correct. Changed.
1,214 2008-01-30 03:04
Re: Fancy URL's (50 replies, posted in PunBB 1.3 troubleshooting)
Actually, I can confirm htaccess files are disabled on your server: I just browsed to your cache folder and got the index.html file rather than a .htaccess 403.
You need to set up AllowOverride properly.
1,215 2008-01-30 03:01
Re: Fancy URL's (50 replies, posted in PunBB 1.3 troubleshooting)
Are you sure you can use .htaccess files on your host?
If you are, would it be possible for you to give me FTP access to check this out?
1,216 2008-01-30 02:56
Re: Fancy URL's (50 replies, posted in PunBB 1.3 troubleshooting)
Interesting: try removing the RewriteBase line and see if it helps.
1,218 2008-01-30 02:51
Re: Fancy URL's (50 replies, posted in PunBB 1.3 troubleshooting)
Does your server have mod_rewrite enabled?
1,219 2008-01-30 02:49
Re: Fancy URL's (50 replies, posted in PunBB 1.3 troubleshooting)
RewriteBase was /, not /shedrockonline. Change it back
1,220 2008-01-30 02:33
Re: Fancy URL's (50 replies, posted in PunBB 1.3 troubleshooting)
Did you put the .htaccess file in place? If so, paste the contents of it here.
1,221 2008-01-30 02:22
Re: PunBB 1.3 Beta (48 replies, posted in News)
bingiman: 1.3 beta talk is a better place for it
You need to edit the .htaccess file if your forum isn't at the bottom of the site (eg: if your forum is at punbb.org/forums rather than at punbb.org
1,222 2008-01-30 02:06
Re: Search min characters (6 replies, posted in PunBB 1.3 troubleshooting)
Smartys wrote:You can't, that's the point: we enforce a minimum length.
For the username registrationyup, but I don't see why the username *search* has anything to do with the username minimal length?
Because you don't particularly want a query that looks through 100,000+ posts looking for the ones where the poster starts with A. And then B. And then C. And then 5. That's called a DOS attack.
1,223 2008-01-30 02:03
Re: So when will these forums be updated? (3 replies, posted in PunBB 1.3 troubleshooting)
As much as we love 1.3, for now we're going to take our own advice and not use it in a production environment. People depend on these forums for support and we don't want to inconvenience them if a serious bug happens to show up. As the beta progresses, we may choose to convert these forums. Or we may wait until 1.3.0
1,224 2008-01-30 02:00
Re: Search min characters (6 replies, posted in PunBB 1.3 troubleshooting)
And if I want to parse by all author starting with the letter a, how could I without "a*"?
You can't, that's the point: we enforce a minimum length. This behavior is no different than 1.2.
Also, it doesn't trigger an error, it's a silent one.
Fair point
1,225 2008-01-30 01:53
Re: Search min characters (6 replies, posted in PunBB 1.3 troubleshooting)
There's a 2 character minimum (excluding wildcards) for author (since the smallest username is 2 letters), so your second example isn't a bug. However, you are right that we should be letting MySQL deal with the minimum keyword length in your first example.