7,301

(2 replies, posted in Programming)

Oh, definately. SQLite is very nice and if there isn't already a decent web based admin tool for it, I say go for it!

7,302

(8 replies, posted in General discussion)

Ah, thanks :)

7,303

(0 replies, posted in News)

As you may have noticed, there is now a PayPal donate button to your left. So, if you feel like making me happy, don't hesitate to donate a few bucks. I promise the money you donate will be put to good use :)

7,304

(8 replies, posted in General discussion)

Yeah, it was the 10th of August I believe :)

7,305

(8 replies, posted in General discussion)

I checked out the apache log stats today and here are some numbers (myself excluded):

July

  Unique visitors:  955
  No. of visits:    1837 (1.92 visits/visitor)
  Pages:            13405 (7.29 pages/visit)
  Hits:             30245 (16.46 hits/visit)
  Bandwidth:        243.89 MB (135.94 KB/visit)


August

  Unique visitors:  4895
  No. of visits:    7540 (1.54 visits/visitor)
  Pages:            59841 (7.93 pages/visit)
  Hits:             126978 (16.84 hits/visit)
  Bandwidth:        470.08 MB (63.84 KB/visit)


September

  Unique visitors:  5274
  No. of visits:    8681 (1.64 visits/visitor)
  Pages:            68609 (7.9 pages/visit)
  Hits:             145202 (16.72 hits/visit)
  Bandwidth:        577.61 MB (68.13 KB/visit)

The total bandwidth usage for PunBB.org since february is 2.18 GB. 1.67 GB of bandwidth (since februari) has been saved thanks to mod_gzip.

PunBB has been downloaded 3090 times (including betas and release candidates).

Small numbers, but I love statistics :D

Edit: Updated now that September is over. Also, added betas and RCs to the download count.

chacmool: Nice! Could you upload it to PunRes?

Nope, if you added two field to the options table, it's correct.

7,308

(7 replies, posted in Archive)

Man tackar och bugar :)

No, I really can't give an estimage. You can follow the progress in the following topic: http://punbb.org/forums/viewtopic.php?id=2467

7,310

(10 replies, posted in General discussion)

fly: I guess our opinion on what "looks good" is different then ;)

7,311

(142 replies, posted in PunBB 1.2 discussion)

These forums:

Rows: 109089
Size: 5.66 MB

7,312

(10 replies, posted in General discussion)

Frank H, Hewitt: Yepp, that won't be affected.

fly: :D

I'm considering removing the ability to make a complete category admin/mod only. As it is now, the feature is only a lazy way of making all forums within that category admin/mod only. Thus, no functionality will be removed.

The reason I want to remove it is making a few queries a little simpler. Especially for "recent discussions" where I won't have to join in the category table if only forums can be admin/mod only.

What do you say?

Edit: Typo.

Well, the Home-link is always there. The board index link is visible in viewforum and viewtopic, but not in other scripts.

7,315

(4 replies, posted in PunBB 1.2 discussion)

I've changed the guest permissions in these forums. Guests are no longer allowed to post new topics. I have no good reason. I guess I just want people to register :D

If you mean moving a post (and not a topic), there is no way. It will be possible in 1.1 though.

Hmm, I just thought of something. There is no way of viewing a category in PunBB. There is only index.php and viewforum.php, not viewcategory.php.

But then it would be very "long". I'm not convinced yet :)

Actually, I frequently use the board title link to go back to the index. It's also kind of a standard in bulletin boards, so I'm guessing a lot of people would react if PunBB suddenly strayed from "the standard".

7,320

(3 replies, posted in Archive)

Här eller?

It doesn't really matter where. Just put it by the other header() calls.

But, as I said, it only works on some setups. To fix it permanently, you would have to skip the domain redirect and get a "real domain".

7,322

(11 replies, posted in PunBB 1.2 troubleshooting)

You can ban a range of IP addresses, but at least one whole octet. Ex. 150.11.110. This will ban 150.11.110.1 through 150.11.110.255.

No, unfortunately not. It requires the use of sessions and PunBB doesn't use sessions at all.

Try this then:

header('P3P: policyref="http://www.your_site.com/bla/p3p.xml" CP="NON CURa ADMa TAIa OUR BUS IND UNI COM NAV"');

I'm not sure if p3p.xlm must exists and if it must contain valid information.

7,324

(10 replies, posted in PunBB 1.2 troubleshooting)

I'm glad it worked out. Will try to keep this in memory if someone else has similar problems.

This is a known "issue" (not a bug) with Internet Explorer 6 and it's privacy settings. Read more about it here:

http://www.vbulletin.com/forum/showthread.php?t=54259

Most of the time the only solution is to not use a frame based domain redirect. However, sometimes sending P3P headers helps out:

header('P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM"');

Add that to header.php where the other HTTP headers are sent out. Tell me if it works.