There shouldn't be a problem, just make sure to use a prefix like forum_ or so.
652 2007-06-14 11:47
Re: More comprehensive descriptions in the admin panel (7 replies, posted in Feature requests)
A 386?
Nothing special, definately not the heavy dual-core machines you'll find for vB forums.
653 2007-06-13 20:12
Re: What am I doing wrong? (17 replies, posted in Programming)
Indeed. You could've just put the name in backticks (`) though.
654 2007-06-13 14:39
Re: More comprehensive descriptions in the admin panel (7 replies, posted in Feature requests)
If people'd care enough about a single query extra, they'd notice when enabling it.
655 2007-06-13 14:38
Re: Online bug: 1 user online twice? (9 replies, posted in PunBB 1.2 bug reports)
If it still occurs after 1.2.15, you messed up somewhere, yes.
656 2007-06-12 18:35
Re: Punbb and Reinvigorate stats tracking (9 replies, posted in PunBB 1.2 modifications, plugins and integrations)
User information is stored in the $pun_user array. To check if a user is logged in, use $pun_user['is_guest'].
657 2007-06-12 10:26
Re: Safari for Windows (10 replies, posted in General discussion)
Bleh. That's all there is to say.
658 2007-06-11 19:07
Re: help! TLS! (1 replies, posted in PunBB 1.2 troubleshooting)
Seems like it has to do with SSL. Search the forum here, I'm sure there's a fix for it.
659 2007-06-11 18:11
Re: Asterisks (2 replies, posted in General discussion)
Erm, just press the * button?
660 2007-06-11 16:29
Re: Bad HTTP Referer - but only for 2 users with full PM inboxes (4 replies, posted in PunBB 1.2 troubleshooting)
Or have them turn off their silly norton protection suite.
661 2007-06-10 13:47
Re: missing config.php file (2 replies, posted in PunBB 1.2 troubleshooting)
The config file is generated when install.php is executed.
662 2007-06-10 08:16
Re: Contest based on number of times page is accessed (3 replies, posted in Programming)
Some fundamentally flawed stuff. A query doesn't return an array of fields, mysql_fetch_assoc() does.
663 2007-06-09 12:57
Re: Xhtml strict, form tags and javascript. (2 replies, posted in Programming)
Hrmm, I need to rewrite that mod someday
document.getElementById('post').req_message
664 2007-06-08 08:58
Re: New members can't reply (2 replies, posted in PunBB 1.2 troubleshooting)
Doesn't it? I though standard settings were to permit everyone to post except for guests...
666 2007-06-06 18:11
Re: Thread Page Count (3 replies, posted in PunBB 1.2 troubleshooting)
Automatically deleted? Unlikely. PunBB should be able to easily handle that. Check with your admins/moderators.
667 2007-06-06 18:09
Re: Retrieve deleted thread (5 replies, posted in PunBB 1.2 troubleshooting)
As I said, it's deleted. Not flagged. Deleted.
668 2007-06-06 16:55
Re: Retrieve deleted thread (5 replies, posted in PunBB 1.2 troubleshooting)
You cannot, everything is deleted. Unless you have backups.
669 2007-06-03 09:45
Re: It is can't use at all!!! (10 replies, posted in PunBB 1.2 troubleshooting)
If you screwed up, come here whining about it without following the simplest of instructions, don't bother coming here at all.
670 2007-06-01 19:39
Re: Arrays and in_array (12 replies, posted in Programming)
The best option would be to track down the bug and fix it But error supression works too I guess.
671 2007-06-01 19:06
Re: Arrays and in_array (12 replies, posted in Programming)
I don't know of any bugs with it Weird error...
672 2007-06-01 17:53
Re: Arrays and in_array (12 replies, posted in Programming)
Try doing a print_r($clock_array);
673 2007-06-01 17:51
Re: how extension systems work... (10 replies, posted in PunBB 1.2 discussion)
The mod developer has to say which hook to use. PunBB does the rest.
674 2007-06-01 16:38
Re: how extension systems work... (10 replies, posted in PunBB 1.2 discussion)
In the location of each hook a function is called with the hook name. This will return the code that's bound to the hook and an eval() around it makes sure the code gets executed.
675 2007-06-01 15:05
Re: how extension systems work... (10 replies, posted in PunBB 1.2 discussion)
It parses an XML file, stores the code in the database (and in the cache too I think) and then runs an eval() on the code applying to a hook.