I never received a reply...
26 2007-12-13 07:15
Re: Request: Bookmark topics to user profile (2 replies, posted in PunBB 1.2 modifications, plugins and integrations)
27 2007-12-06 18:07
Re: Request: Bookmark topics to user profile (2 replies, posted in PunBB 1.2 modifications, plugins and integrations)
I sent you an email.
28 2007-11-21 19:27
Re: Security question (12 replies, posted in PunBB 1.2 modifications, plugins and integrations)
chmod -R 777 [/path/to/cachedir]
Not every has (or knows how to use) shell access to their server.
29 2007-11-04 03:01
Re: What i want to see in upcoming versions! (20 replies, posted in Feature requests)
1. I agree. number_format can accomplish this.
The decimal point and thousands separator would need to be localized.
3. Agree. A simple 'parent' column can accomplish this (null if top-level forum; parent's forum_id if otheriwse). As an added bonus this can also handle mutli-level forums.
Storing a parent doesn't do much unless you change how things are displayed too. Of course, that'll be worked out when someone writes an extension for it.
30 2007-10-23 15:56
Re: how to add a font file to my website? (4 replies, posted in Programming)
31 2007-10-20 03:56
Re: URL format check (13 replies, posted in Programming)
Plus, it removes the need to call strtolower, as stristr is case insensitive.
So does stripos, but that requires PHP 5.
32 2007-10-20 00:22
Re: URL format check (13 replies, posted in Programming)
What was wrong with the first piece of code you posted?
// Handle the "empty" and "else" part however you want
if (!empty($_POST['txturl']) && strpos(strtolower($_POST['txturl']), 'http://') !== 0)
$_POST['txturl'] = 'http://'.$_POST['txturl'];
else
$_POST['txturl'] = '';
33 2007-10-19 22:58
Re: URL format check (13 replies, posted in Programming)
stristr($uri, 'http://')
Why not use strpos?
Note: If you only want to determine if a particular needle occurs within haystack, use the faster and less memory intensive function strpos() instead.
34 2007-10-19 00:01
Re: Quick way to update Topics and Forums with correct numbers of items? (8 replies, posted in PunBB 1.2 troubleshooting)
Where do I access the Update Forum function?
It's part of functions.php (if you're looking for a way to do this programmatically).
You might also check out Connor's Forum Cleanup plugin (on the downloads page).
35 2007-10-14 04:27
Re: An update (124 replies, posted in News)
Actually, my dictionary and thesaurus says that opinion and judgment are similar.
36 2007-10-13 15:55
Re: An update (124 replies, posted in News)
Yes, they want to make money. Like any other company.
Enough with the drama.
++
37 2007-09-21 14:42
Re: Atom feed generator (27 replies, posted in PunBB 1.2 discussion)
38 2007-09-17 01:06
Re: What RSS readers do people use (and enjoy)? (14 replies, posted in General discussion)
I use Safari (on Mac OS X).
39 2007-09-16 03:22
Re: Preview of topic in title in the links (15 replies, posted in Feature requests)
The author thought that "HELP!" was a good topic, cause that what he/she wants. So, instead of having to go to the page you can just continue listening.
I just ignore such topics.
40 2007-08-28 05:35
Re: <SOLVED> date formatting (5 replies, posted in Programming)
I read "English date into timestamp". Blah...
41 2007-08-28 04:13
Re: Pun Front page is no more? And Pun BB doesn't support a chat area? (4 replies, posted in PunBB 1.2 discussion)
Have you checked these out?
Frontpage PunBB
AJAX Chat
42 2007-08-21 02:03
Re: Groups and forum rights (1 replies, posted in PunBB 1.2 modifications, plugins and integrations)
You can change permissions for all groups expect admin...
43 2007-08-14 00:05
Re: <SOLVED> date formatting (5 replies, posted in Programming)
I think you want strtotime().
44 2007-08-12 17:35
Re: changing the format of date and time? (4 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Y/m/d g:i:s A
45 2007-08-05 07:20
Re: Release: PunBB E-Texteditor / Textmate bundle 1.0.0 (11 replies, posted in PunBB 1.2 discussion)
ALT+H you mean?
No, it's Control on my machine.
The lang array tooltip shortcut is only available within the source.php string.quoted, string.quoted.single.php, string.quoted.double.php scopes ... It could possibly cause some confusion though, so I'll change it if you think it'll help
Er, I missed that earlier. It's your call on what shortcut to use.
46 2007-08-04 21:31
Re: Release: PunBB E-Texteditor / Textmate bundle 1.0.0 (11 replies, posted in PunBB 1.2 discussion)
I'd also change the shortcut for the language array tooltip to something else (Ctrl+H is already used by the PHP bundle for documentation lookup).
47 2007-08-04 17:59
Re: Release: PunBB E-Texteditor / Textmate bundle 1.0.0 (11 replies, posted in PunBB 1.2 discussion)
As I was reading trough the "What editor do you use for PHP?" thread here at the PunBB forums, I encountered a very basic Textmate bundle by guardian34. This got me thinking, why not start working on a more expansive bundle, with most of the commonly used functions, variables and things like database queries.
Good idea.
As I do not own a Mac, I have not been able to test this with Textmate. E-Texteditor bundles is compatible with Textmate though, so it should work just fine. If not, please let me know.
It does work fine with TextMate once it's loaded. However, before I loaded it, I changed the uuid of your bundle to something else because it was the same as mine (I think it would've merged the two bundles together, which I didn't want).
FWIW, I just made a new (temporary) bundle and copied the uuid from that (9345B070-717F-44A9-A4B9-6D58DD28C394).
49 2007-07-29 23:40
Re: Have viewtopic.php?pid=x redirect to viewtopic.php?id=y#x. (7 replies, posted in Feature requests)
I guess that could be mis-used ..
How so?
50 2007-07-29 21:17
Re: Have viewtopic.php?pid=x redirect to viewtopic.php?id=y#x. (7 replies, posted in Feature requests)
Of course.