You want to use the same user table, but have nothing else the same?
6,802 2005-08-29 18:14
Re: HideMe functionality for 1.2.6? (12 replies, posted in PunBB 1.2 modifications, plugins and integrations)
I'll take a look when I get home
6,803 2005-08-29 10:56
Re: "Unable to insert search results" aléatoire (11 replies, posted in PunBB 1.2 bug reports)
Well, you could change search_id to an auto_increment, alter the query to not insert search_id, and truncate the table
6,804 2005-08-29 02:22
Re: "Unable to insert search results" aléatoire (11 replies, posted in PunBB 1.2 bug reports)
Calico: Well, that defies odds
$search_id = mt_rand(1, 2147483647);
That's the line that creates the search id. Basically, you're somehow getting the same random number
6,805 2005-08-28 21:31
Re: Mod Request: Avatars Gallery Mod For PunBB: 1.2.6 Version (2 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Yes, see how this one installs.
It should be fine, except any line-numbers may be a little off.
6,806 2005-08-28 15:39
Re: punBB short urls (16 replies, posted in PunBB 1.2 modifications, plugins and integrations)
I have a feeling this isn't in the right area (this is for the admin/mod plugins that go in the plugin dir)
6,807 2005-08-28 12:36
Re: Installation error "unable to open temporary database file" (1 replies, posted in PunBB 1.2 troubleshooting)
Well, it looks like your webserver doesn't have permission to write in the directory where you're putting the DB file.
6,808 2005-08-27 13:25
Re: punbb hacked (17 replies, posted in General discussion)
6,809 2005-08-27 12:02
Re: punbb hacked (17 replies, posted in General discussion)
I believe Rickard said in the thread that he was missing one of the patches for 1.2.6 (the one where you needed register_globals on)
6,810 2005-08-27 01:40
Re: How can we... (help please) (4 replies, posted in PunBB 1.2 troubleshooting)
Nephets: Having never used the colored usergroups mod, I can guess that you should pretty much replicate whatever you did to viewtopic.php
6,811 2005-08-26 23:28
Re: Group Change Security MOD (22 replies, posted in PunBB 1.2 modifications, plugins and integrations)
In the code, in the pun_mail function, replace $pun_config['o_mailing_list'] with the email address (enclosed in 's)
6,812 2005-08-26 22:02
Re: Group Change Security MOD (22 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Yes
6,814 2005-08-26 13:13
Re: punbb hacked (17 replies, posted in General discussion)
lol, it's not that hard, if you have cron jobs
Just run a script every 10 minutes that checks that you still have admin
6,815 2005-08-26 13:12
Re: 1.5 version secure? (3 replies, posted in General discussion)
1.1.5 I think you mean
And no, there are security bugs that affect the 1.1.5 line as well. You might want to just take a look at what changes were made and see if they affect you example
6,816 2005-08-26 13:10
Re: FaNTASTICO (2 replies, posted in General discussion)
They have to add it in, I don't think Rickard can just go and add PunBB in
6,817 2005-08-26 13:07
Re: Is it allowed to remove copyright? (12 replies, posted in PunBB 1.2 discussion)
Wow, this is the oddest topic I've ever read
6,818 2005-08-25 17:07
Re: PunBB Source Code!? (17 replies, posted in PunBB 1.2 bug reports)
*cough*silent edit*cough*
6,819 2005-08-25 15:05
Re: PunBB Source Code!? (17 replies, posted in PunBB 1.2 bug reports)
such as Smartys or Savant
I am not a template system
But I did find my name much cooler when I first heard about Smarty
6,820 2005-08-25 14:18
Re: Google Talk (11 replies, posted in General discussion)
6,821 2005-08-25 13:25
Re: Error: Unable to fetch user info. (25 replies, posted in PunBB 1.2 troubleshooting)
Looks fine to me now
But error 28 = disk full
That means you used up your MySQL diskspace
6,822 2005-08-25 13:18
Re: All links and pages show wrong URL (6 replies, posted in PunBB 1.2 troubleshooting)
Looks fine to me... (although going to http://www.dankster.org/indie redirects me to http://dankster.drazin.org/indie)
6,823 2005-08-25 00:04
Re: admin_maintenence.php (4 replies, posted in PunBB 1.2 bug reports)
There isn't a way to stop people from doing things to the database manually
But my point is, when people rebuild the search index, their cached results should be cleared. I mean, if the issue is manually doing something to posts, then the search cache can conflict
6,824 2005-08-24 23:31
Re: members list (5 replies, posted in PunBB 1.2 troubleshooting)
Lemme see
userlist.php
FIND
if ($pun_user['g_read_board'] == '0')
message($lang_common['No view']);
AFTER, ADD
if ($pun_user['g_id'] > PUN_MOD)
message($lang_common['No permission']);
Although you'll need to edit the navlinks generation function to remove the link
6,825 2005-08-24 23:27
Re: admin_maintenence.php (4 replies, posted in PunBB 1.2 bug reports)
If you've added, edited or removed posts manually in the database or if you're having problems searching, you should rebuild the search index
If you add, edit, or remove posts manually, then any cached search results with them in it are invalid