http://punbb.org/forums/viewtopic.php?id=18148

1,202

(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.

Yes, using the db_update.php script in the extras folder

1,204

(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

(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

(2 replies, posted in PunBB 1.3 troubleshooting)

And fixed

1,207

(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

(50 replies, posted in PunBB 1.3 troubleshooting)

Oh. Then neither of your sites have working htaccess files tongue

1,209

(15 replies, posted in Programming)

Use fsockopen instead of fopen, that allows you to set a timeout

1,210

(50 replies, posted in PunBB 1.3 troubleshooting)

It just started working on your host as well.

1,211

(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

(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

(3 replies, posted in PunBB 1.3 troubleshooting)

Correct. Changed.

1,214

(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. smile
You need to set up AllowOverride properly.

1,215

(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

(50 replies, posted in PunBB 1.3 troubleshooting)

Interesting: try removing the RewriteBase line and see if it helps.

1,217

(3 replies, posted in PunBB 1.3 troubleshooting)

Fixed

1,218

(50 replies, posted in PunBB 1.3 troubleshooting)

Does your server have mod_rewrite enabled?

1,219

(50 replies, posted in PunBB 1.3 troubleshooting)

RewriteBase was /, not /shedrockonline. Change it back wink

1,220

(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

(48 replies, posted in News)

bingiman: 1.3 beta talk is a better place for it wink
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

(6 replies, posted in PunBB 1.3 troubleshooting)

Jérémie wrote:
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. wink

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 wink

1,224

(6 replies, posted in PunBB 1.3 troubleshooting)

Jérémie wrote:

And if I want to parse by all author starting with the letter a, how could I without "a*"? wink

You can't, that's the point: we enforce a minimum length. This behavior is no different than 1.2. smile

Jérémie wrote:

Also, it doesn't trigger an error, it's a silent one.

Fair point wink

1,225

(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.