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 2004-02-14 00:56
Re: I have a problem (11 replies, posted in PunBB 1.2 troubleshooting)
So your prefix is "allic_pun.bun"?
6,428 2004-02-14 00:54
Re: Newest post first. (4 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Someone asked the same question just the other day. Have a look at this topic.
6,429 2004-02-14 00:52
Re: Where did all the people come from? (14 replies, posted in General discussion)
Oh, and then I misread "Powered by punBB"... thought it said "Toward my bunny"...
Now that's what I call misreading :D
6,430 2004-02-14 00:51
Re: Generic Mod structure (5 replies, posted in PunBB 1.2 modifications, plugins and integrations)
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 2004-02-13 19:14
Re: extern.php (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.
6,432 2004-02-13 19:06
Re: extern.php (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 2004-02-13 18:55
Re: extern.php (8 replies, posted in PunBB 1.2 troubleshooting)
Try
include('/home/dolsentw/public_html/punbb/extern.php?action=online');
6,434 2004-02-13 18:46
Re: extern.php (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.
6,435 2004-02-13 18:44
Re: romanian language pack (1 replies, posted in PunBB 1.2 modifications, plugins and integrations)
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 2004-02-13 16:17
Topic: And today Romanian (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 2004-02-13 12:44
Re: Attention !!! (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.
6,438 2004-02-13 12:39
Re: Extended Forum Access Mod 1.1 by Cactuz (33 replies, posted in PunBB 1.2 modifications, plugins and integrations)
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 2004-02-13 12:37
Re: New Firebird Release (19 replies, posted in General discussion)
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 2004-02-13 02:37
Topic: Spanish language pack (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.
6,441 2004-02-13 02:23
Re: Cactuz Homepage down (20 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Nice! It's fast :)
Edit: modgen.cactuz.nu doesn't work though.
6,442 2004-02-12 23:35
Re: I have a problem (11 replies, posted in PunBB 1.2 troubleshooting)
What version are you running?
Is $db_prefix correctly set in config.php?
6,443 2004-02-12 22:05
Re: Avatarproblem (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 2004-02-12 15:38
Re: CSS problem (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.
6,445 2004-02-12 15:35
Re: Error Code when uploading a Picture (5 replies, posted in PunBB 1.2 troubleshooting)
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.
6,446 2004-02-12 09:18
Re: !!***!!!! (3 replies, posted in PunBB 1.2 modifications, plugins and integrations)
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 2004-02-12 09:12
Re: CSS problem (12 replies, posted in Programming)
Quakenet. The channel isn't "official" or anything. Maybe there will be an official channel later though :)
6,448 2004-02-12 09:12
Re: I have a problem (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 2004-02-12 00:26
Re: CSS problem (12 replies, posted in Programming)
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 2004-02-12 00:25
Re: New Firebird Release (19 replies, posted in General discussion)
It should increment the guest count when someone is signing up or logging in.