Can you replicate the behavior?
501 2006-09-20 20:43
Re: Problem when changing position of categories (4 replies, posted in PunBB 1.2 bug reports)
502 2006-09-20 20:30
Re: when a forum has some "moved" topics, the oldest topics are not shown (5 replies, posted in PunBB 1.2 bug reports)
Indeed a nice catch
Now, to fix it. Hmm, I really don't want to have to run an additional query to determine the topic+redirect topic count.
503 2006-09-20 20:26
Re: I can't upload any avatars in my site (60 replies, posted in PunBB 1.2 troubleshooting)
Try removing the @ before move_uploaded_file(). You should get a more descriptive error message from PHP. Also, try replacing move_uploaded_file() with copy() as suggested above, but with the @ removed.
504 2006-09-20 20:22
Re: php related: uploading (5 replies, posted in PunBB 1.2 troubleshooting)
It's difficult to say. Something is using up a lot of memory. You need to find where the memory is being consumed and take it from there.
505 2006-09-20 12:58
Re: Problem displaying the greek 'r' (ro) letter (3 replies, posted in PunBB 1.2 troubleshooting)
PunBB does not support UTF-8 encoding in the current release. PunBB 1.3 will, but until then, you'll have to stick with windows-1253 (or whatever is the preferred Greek charset).
506 2006-09-20 11:27
Re: I can't upload any avatars in my site (60 replies, posted in PunBB 1.2 troubleshooting)
Brilliant host that allows uploads, but then applies open_basedir restrictions on the folder into which files are uploaded
507 2006-09-20 11:24
Re: PHP Source Code Output (7 replies, posted in PunBB 1.2 troubleshooting)
Like someone pointed out earlier, this has nothing to do with your browser.
508 2006-09-20 08:32
Re: typo in admin_groups.php (11 replies, posted in PunBB 1.2 bug reports)
Fixed.
509 2006-09-20 08:28
Re: Don't see my forum anymore (6 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Moved to modifications.
510 2006-09-20 08:00
Re: Rename unregister_globals() function (2 replies, posted in Feature requests)
511 2006-09-19 09:39
Re: PHP Source Code Output (7 replies, posted in PunBB 1.2 troubleshooting)
You should talk to your host. It's a problem on their end.
512 2006-09-18 15:41
Re: Is it just me, or does punbb miss daylight saving time support? (27 replies, posted in PunBB 1.2 troubleshooting)
1.3 has a DST function implemented.
It has?
I don't believe we've added it yet, but it'll be in there.
513 2006-09-18 15:35
Re: Error javisst (3 replies, posted in Archive)
Finns en klistrad tråd i troubleshooting-forumet som du kan läsa om HTTP_REFERER-problem.
514 2006-09-11 22:15
Re: why yall getting an attiude with me? (3 replies, posted in General discussion)
You posted this topic, waited less than 4 hours, bumped the topic, waited another 20 minutes, posted a new topic with some guys e-mail address in plain text asking him to e-mail you (we deleted the topic of course) and you think we're giving you attitude? Please.
515 2006-09-11 20:21
Re: Funny ;) (132 replies, posted in General discussion)
I don't think is that bad
It's not. I think it's hilarious
516 2006-09-11 14:31
Re: Integration Issue with $pun_user (2 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Well, the second option "uses global variables" in that PunBB instanciates a number of global variables. I would still opt for it though.
517 2006-09-09 19:02
Re: Liking PunBB (3 replies, posted in PunBB 1.2 discussion)
Thank you very much for the kind words. It's reading these kinds of messages now and then that really get the coding juices flowing
518 2006-09-08 17:31
Re: Guests can post even if the permission is set to "no" (4 replies, posted in PunBB 1.2 troubleshooting)
And the per-forum permissions aren't set to allow guests to post?
519 2006-09-08 17:31
Re: Error javisst (3 replies, posted in Archive)
Prova radera php-skripten i cache-katalogen. Kan vara nån gammal cache-fil som spökar.
520 2006-09-08 17:29
Re: Where you put PHP folder (6 replies, posted in Programming)
In my case, I have PHP installed in the following directories:
D:\Program Files\PHP 4.4.4
D:\Program Files\PHP 5.1.4
D:\Program Files\PHP 5.2 dev
521 2006-09-07 12:44
Topic: Guest posting disabled (9 replies, posted in Test forum)
Until the release of PunBB 1.3 and a potential spam-fighting extension, I'm disabling guest posting in the test forum. There's not a lot of spam here, but it's annoying nonetheless.
522 2006-09-07 09:11
Re: "Junk" button (7 replies, posted in Feature requests)
If nothing else, this should be easy to implement as an extension in 1.3.
523 2006-09-06 20:40
Re: returned to install.php after filling out install.php form (10 replies, posted in PunBB 1.2 troubleshooting)
Forget the instructions I gave you. I instructed you to put them in the wrong place and dump() isn't even defined in that scope I'm a moron.
It appears as if, when you submit the form, it never gets posted. I can't believe this has anything to do with PunBB. Have you successfully run any other PHP scripts that include forms?
524 2006-09-06 15:31
Re: Include baseurl with smileyparsing (11 replies, posted in Feature requests)
I think extensions will solve these problems.
525 2006-09-06 09:03
Re: returned to install.php after filling out install.php form (10 replies, posted in PunBB 1.2 troubleshooting)
Try this. Open up install.php and look for:
if (!isset($_POST['form_sent']))
At the beginning of that code block, add
dump($_POST);
Then try to install. It won't work, but we will at least know if PHP is aware of that information was POST:ed.