426 2006-11-03 08:30
Re: If Architects Had To Work Like Web Designers... (4 replies, posted in General discussion)
427 2006-11-02 11:58
Re: check out macminds.net (6 replies, posted in PunBB 1.2 show off)
Very nice.
428 2006-11-02 10:45
Re: PunBB 1.2.14 (95 replies, posted in News)
You can leave it as it is. The change was to allow install on MySQL 5.0.25 and later.
429 2006-10-30 15:38
Re: I have no idea what I am doing (3 replies, posted in PunBB 1.2 troubleshooting)
You can either upload the "upload" folder and then rename it to whatever you want (for example "forum") or you can create a folder called "forum" on the server and then upload everything in "upload" into that folder.
You're being asked for MySQL details, not FTP. Your host should be able to provide you with those details.
There's no detailed walkthrough at the moment, but we're working on better documentation. I'm considering doing screencasts where I walk through common scenarios, for example install and initial setup.
430 2006-10-30 09:56
Re: "User has posted earlier" For Search (6 replies, posted in Feature requests)
I guess if we can do it efficiently, it shouldn't be a problem. I'll put it on the list.
431 2006-10-29 20:46
Re: Disabling guest posting: Hell! (13 replies, posted in PunBB 1.2 troubleshooting)
shacker: No, he's referring to the users table. Look for the user with the username "Guest". This user should have id = 1 and g_id = 3.
432 2006-10-28 14:47
Topic: The FF2 extension everyone should be using (7 replies, posted in General discussion)
Stefan Esser of the Hardened-PHP Project has written an extension that enables httpOnly support for cookies in Firefox 2. An httpOnly cookie is a cookie that cannot be read from a client side script, thereby preventing cookie stealing.
433 2006-10-27 22:21
Re: PunBB 1.2.14 (95 replies, posted in News)
MikeRulez: Grab the hdiff from the downloads page.
434 2006-10-27 22:20
Re: BBCode Bug. (2 replies, posted in PunBB 1.2 bug reports)
Thanks for the report. The parser is getting a complete overhaul in 1.3. I'll put this issue on the list.
436 2006-10-26 19:53
Re: Always corrupt table posts.MYI (6 replies, posted in PunBB 1.2 troubleshooting)
Nah, that shouldn't affect anything. I'm sorry, but I don't know. I'd ask in the MySQL forums.
437 2006-10-26 09:21
Re: Always corrupt table posts.MYI (6 replies, posted in PunBB 1.2 troubleshooting)
I'd ask your host or in the MySQL forums. It could be that the server runs out of physical memory. Not sure though.
438 2006-10-26 09:07
Re: "Printer Friendly" page with new header/footers for Topics/posts (9 replies, posted in Feature requests)
Well, PunBB 1.3 has a print stylesheet for viewtopic right now. I prefer having just a print stylesheet as opposed to a print friendly page.
439 2006-10-25 11:48
Re: Firefox 2.0 (47 replies, posted in General discussion)
Yes, but I don't want to install a fresh copy. I want to upgrade.
440 2006-10-25 08:20
Re: Firefox 2.0 (47 replies, posted in General discussion)
I've tried "Check for upgrades..." in FF1.5, but still nothing.
441 2006-10-25 08:12
Re: Post your digg user (18 replies, posted in General discussion)
Any more diggers around?
442 2006-10-25 07:41
Re: Turkish board there! (7 replies, posted in Feature requests)
I'll wait for the forums to get a few more posts. I don't like linking people to empty forums.
443 2006-10-23 14:44
Re: do i need to reinstall if...? (5 replies, posted in PunBB 1.2 troubleshooting)
Could we get a link to the forum in question?
444 2006-10-22 16:05
Re: PunBB 1.3 development/improvement (8 replies, posted in PunBB 1.2 discussion)
I don't know where to post it, so...
There is a unlocalised text (Sort topics by) in line 281 of admin_forums (punbb 1.3 dev).
Got it. Thanks.
445 2006-10-22 15:59
Re: Modded punBB available that removes JS and cookie dependency? (13 replies, posted in PunBB 1.2 discussion)
Why anyone would disable cookies completely is beyond me. You disable cookies and then you enable them for the sites that require it. That's how I have my system setup (using the excellent "Permit Cookies" extension for Firefox).
446 2006-10-19 23:49
Re: Memcache (8 replies, posted in Feature requests)
This could be a candidate for a PunBB 1.3 extension.
447 2006-10-19 21:09
Re: Suggestion for IE7 - CSS hack to allow text size change (2 replies, posted in PunBB 1.2 discussion)
Sounds like a no-brainer to me, but I'll let Paul be the judge if it goes in or not.
448 2006-10-19 18:48
Re: show recent post links to outdated post (7 replies, posted in PunBB 1.2 bug reports)
Got it. Will fix in 1.3.
449 2006-10-19 11:43
Re: PunBB 1.2.14 (95 replies, posted in News)
Once again, I haven't received any notification for this update.... I thought I should have because I subscribed to the newsletter.
Ludo,
And you didn't subscribe with an e-mail address you no longer use?
450 2006-10-18 11:38
Re: What is actually a "NULL byte"? (14 replies, posted in Programming)
How about the filenames, if i let users upload for example images, do i need to check for the image names if they contains NULL byte?
If you're going to rely on the filename provided by the user, I would definately check it. Feel free to borrow the code from PunBB: http://dev.punbb.org/changeset/588
You should also make sure that the files that are uploaded don't end in for example .php. I would set up an array of allowed file extensions, strip out any NULL byte and then make sure the filename has one of the allowed extensions.