How do you handle translations that your extension doesn't support?
101 2007-03-15 09:01
Re: Extensions and Languages in 1.3 (8 replies, posted in PunBB 1.2 discussion)
103 2007-03-15 00:51
Re: Extensions and Languages in 1.3 (8 replies, posted in PunBB 1.2 discussion)
I was going to wait and see how it's done in the private message extension (or whatever the developers get out first)?
Edit: ?or a blog post?
104 2007-03-14 22:30
Re: attachments allowed? (1 replies, posted in Feature requests)
It's not part of the default package right now, but I believe the development team wants to make an extension for that in version 1.3. If you need something right now, then you can check out Frank's attachment mod.
105 2007-03-14 19:12
Re: Auto linking! (12 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Interesting? I haven't used censoring; How would that handle, say, "Googlebot"?
106 2007-03-14 03:22
Re: New posts shows (old) moved posts (3 replies, posted in PunBB 1.2 bug reports)
Ah, that makes more sense. That's been fixed in the development code for both 1.3 and 1.2.
107 2007-03-14 03:10
Re: New posts shows (old) moved posts (3 replies, posted in PunBB 1.2 bug reports)
When I just tested this, I didn't have any problems. It could be your browser using a cached version?
108 2007-03-14 01:53
Re: what's a linebreak? heh (2 replies, posted in PunBB 1.2 discussion)
A new line.
X = <a href="URL">LINK</a>
X = <a href="URL">LINK</a>
X = <a href="URL">LINK</a>
109 2007-03-13 21:06
Re: Is it just me, or does punbb miss daylight saving time support? (27 replies, posted in PunBB 1.2 troubleshooting)
[
guardian34 wrote:Smartys wrote:DST is something that needs to be handled by the users
Changing my timezone feels odd though. *shrug*
Yes, and in 1.3 you're checking a box to toggle it on/off. I do that on my digitial clock at home (the button thing): it seems fine to me
Having a checkbox is fine with me.
110 2007-03-13 19:36
Re: Hooks have been added to 1.3 (38 replies, posted in PunBB 1.2 discussion)
I think Oxygen in 1.3 looks better than Oxygen in 1.2. But if you don't like a blue and white look, then you don't like a blue and white look.
111 2007-03-13 19:28
Re: Is it just me, or does punbb miss daylight saving time support? (27 replies, posted in PunBB 1.2 troubleshooting)
DST is something that needs to be handled by the users
Changing my timezone feels odd though. *shrug*
112 2007-03-12 01:07
Re: "Unfortunately no one can be told..." (24 replies, posted in PunBB 1.2 discussion)
I might have to change my vote. Not only is that an important statement, it's also an inside reference with a nice backsi? er, backstory.
113 2007-03-11 22:17
Re: Vanilla vs PunBB (14 replies, posted in PunBB 1.2 discussion)
add any extra things
Hopefully, the extension system will take care of that.
114 2007-03-11 22:12
Re: Use "PHP Include" in main.tpl? (6 replies, posted in PunBB 1.2 troubleshooting)
That file needs to be in the include/user folder.
115 2007-03-11 17:27
Re: Time change isnt showing on posts (20 replies, posted in PunBB 1.2 troubleshooting)
[Test]
Edit: Yeah, I'm an hour off here as is.
Edit: Just FYI: I have a PunBB install on a server that also runs a vBulletin install, and that vBulletin has the right time.
116 2007-03-11 03:47
Re: "Unfortunately no one can be told..." (24 replies, posted in PunBB 1.2 discussion)
PunBB: It just tastes better.
117 2007-03-10 05:40
Re: Rearrange PunBB folders - prevent Bad HTTP_REFERER errors (20 replies, posted in PunBB 1.2 modifications, plugins and integrations)
I'm not going to learn PHP from scratch
I never learned PHP "from scratch" (whatever that means); I'd say over 95% of my PHP knowledge is from working with PunBB.
I don't know what you want hints for, so I'll just start from the top?
So I copied registration.php, login.php and several other files from my '/forum' folder to the root and put heavily edited common.php, functions.php etc. in a '/common' folder I already had for sitewide includes etc.
Why did you makes copies of these? Could you not use them as is in their original location?
118 2007-03-09 18:24
Re: PunBB's plugins and the extension system in 1.3 (6 replies, posted in PunBB 1.2 modifications, plugins and integrations)
I'm planning on rewriting my Author Update plugin.
119 2007-03-09 04:58
Re: Rearrange PunBB folders - prevent Bad HTTP_REFERER errors (20 replies, posted in PunBB 1.2 modifications, plugins and integrations)
I would leave PunBB's stuff intact, and change your own stuff to make it work. If you have any more specific questions, just ask.
120 2007-03-06 19:30
Re: A little bit of that and a little bit of that (51 replies, posted in News)
*groan*
121 2007-03-06 01:28
Re: I cannot login after moved forum to another server (39 replies, posted in PunBB 1.2 troubleshooting)
What did you do when you "moved to another server?" Did you copy the PunBB files? Did you run the install.php file again? Did you backup and restore anything from your old forum database?
122 2007-03-05 23:20
Re: MySQL rows. (4 replies, posted in Feature requests)
From the same page:
If you store a number into an ENUM column, the number is treated as the index into the possible values, and the value stored is the enumeration member with that index. (However, this does not work with LOAD DATA, which treats all input as strings.) If the numeric value is quoted, it is still interpreted as an index if there is no matching string in the list of enumeration values. For these reasons, it is not advisable to define an ENUM column with enumeration values that look like numbers, because this can easily become confusing. For example, the following column has enumeration members with string values of '0', '1', and '2', but numeric index values of 1, 2, and 3:
numbers ENUM('0','1','2')
If you store 2, it is interpreted as an index value, and becomes '1' (the value with index 2). If you store '2', it matches an enumeration value, so it is stored as '2'. If you store '3', it does not match any enumeration value, so it is treated as an index and becomes '2' (the value with index 3).
Edit: Emphasis added.
123 2007-03-05 19:22
Re: Debug mode hint in database error message (6 replies, posted in Feature requests)
Good point, Rickard.
124 2007-03-05 07:01
Re: Debug mode hint in database error message (6 replies, posted in Feature requests)
I agree with Gizzmo. (Good idea, both of you.)
125 2007-03-05 02:18
Re: Mass Private Messaging? (15 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Sending private messages just uses database queries?
// Send messages
while ($cur_user = $db->fetch_assoc($result))