6,426

(7 replies, posted in PunBB 1.2 discussion)

That's gonna be a bit more complicated to fix. Perhaps you should stick to that topic in the mod requests forum after all :)

6,427

(11 replies, posted in PunBB 1.2 troubleshooting)

So your prefix is "allic_pun.bun"?

Someone asked the same question just the other day. Have a look at this topic.

6,429

(14 replies, posted in General discussion)

MarcB wrote:

Oh, and then I misread "Powered by punBB"... thought it said "Toward my bunny"...

Now that's what I call misreading :D

Yes, the mod readme thingy definately needs to be looked over. Simply releasing the output of e.g. hdiff is one possible solution. It sure as hell makes it a lot easier for mod developers. One might even consider including both the raw output of GNU diff together with a formatted version from hdiff (or any other suitable diff "beautifier").

6,431

(8 replies, posted in PunBB 1.2 troubleshooting)

If your host is running Zend Optimizer, you should tell them to upgrade to version 2.5.0 as the bug is fixed in that version.

http://www.zend.com/store/free_download.php?pid=13

6,432

(8 replies, posted in PunBB 1.2 troubleshooting)

That error is a bug in either PHP or in Zend Optimizer. To work around it, put a @ in front of the include. I.e:

@include('http://www.dutcholsentwins.com/punbb/nl/extern.php?action=online');

6,433

(8 replies, posted in PunBB 1.2 troubleshooting)

Try

include('/home/dolsentw/public_html/punbb/extern.php?action=online');

6,434

(8 replies, posted in PunBB 1.2 troubleshooting)

It's my guess that the server cannot resolve the address dutcholsentwins.com. Try including the file with a relative path instead. I.e.

include('/punbb/extern.php?action=online');

or whatever applies to your server.

It can also be found on the downloads page on this site. I've made slight modifications to it. See the e-mail I sent you.

6,436

(0 replies, posted in News)

Yesterday, I received a Spanish lang pack and today I received a Romanian one. Our thanks this time go out to Vlad Mihailescu.

6,437

(26 replies, posted in PunBB 1.2 discussion)

If you have a latvian language pack for PunBB 1.1/1.1.1, I would love to post it to punbb.org so everyone can download it. If you do and you want to share it, just e-mail it to me.

Ah, of course. Try this. Replace:

if($locked == '1' && $cur_user['status'] < 2 && !array_key_exists($cur_user['id'], $locked_users))

with

if($locked == '1' && $cur_user['status'] < 2 && !array_key_exists(intval($cur_user['id']), $locked_users))

Does that help?

6,439

(19 replies, posted in General discussion)

Louis wrote:
Rickard wrote:

It should increment the guest count when someone is signing up or logging in.

It doesn't ... or at least, not the way I tested it:

I loaded Mozilla (with myself logged in) and I loaded Opera (with myself not logged in).

Using ALT+Tab and Refresh, I went between them, trying to load my website and load the registration, then seeing if it updated the guest-count.

Based on that, it didn't work. Does it emply IP address checking, or have I stumbled upon a bug in PunBB 1.1.1?

It is IP based. You can't be logged in and a guest at the same time coming from the same IP.

6,440

(0 replies, posted in News)

Antonio Sánchez sent me a Spanish language pack. Thank you very much Mr. Sánchez. As usual, download it on the downloads page.

PunBB 1.1 is now available in 9 different languages. 1.0 on the other hand, is available in 14 languages. If you've created a language pack for PunBB 1.1 and would like to share it with the world, please don't hesitate to send it in.

Nice! It's fast :)

Edit: modgen.cactuz.nu doesn't work though.

6,442

(11 replies, posted in PunBB 1.2 troubleshooting)

What version are you running?

Is $db_prefix correctly set in config.php?

6,443

(6 replies, posted in Archive)

Servern som du kör skriptet på tillåter inte skrivning till /var/tmp/. Orsaken är att open_basedir är "påslaget" och att skriptet därför inte får skriva utanför sin katalogstruktur.

6,444

(12 replies, posted in Programming)

Yeah, I still need help. However, it will have to wait a few hours. I'm still at the university.

You can also try creating a file called .htaccess with the following contents:

php_value upload_tmp_dir /path/to/your/avatar/dir/

Save the file in your forum root directory.

Do you want to display the five latest posts or the five latest topics or the five latest updated topics? If you want alternative one or two, you can include extern.php. Have a look at the top of the file extern.php in the forum root directory. It contains usage instructions.

Here's an example for alternative three:

<?php

include('http://yourhost.com/extern.php?action=active&show=5');

?>

6,447

(12 replies, posted in Programming)

Quakenet. The channel isn't "official" or anything. Maybe there will be an official channel later though :)

6,448

(11 replies, posted in PunBB 1.2 troubleshooting)

Enable DEBUG mode and try again. Then you will receive a more detailed error message. I'm not sure, but I think it's a matter of an incomplete upgrade. Did you follow the upgrade instructions in install.html?

6,449

(12 replies, posted in Programming)

Louis wrote:
Rickard wrote:

That did the trick. Thanks a bunch :)

You're welcome. So what are you doing that had this problem, since that wasn't the page? The CSS on that page was ... rough. ;)

It's a page for a project I'm doing with a few friends. I need more help though. Can you pop in to #punbb?

6,450

(19 replies, posted in General discussion)

It should increment the guest count when someone is signing up or logging in.