Well, per-topic permissions are going to be a pain no matter how you do them (and I can't think of forum software where they wouldn't be). Just making a tool to handle letting you set them is going to be a pain wink
Making the users in group A anonymous would be simple, it just depends on how you want to do it. You can modify post.php so the poster username and poster ID are set as a guest, for example.

1,627

(21 replies, posted in PunBB 1.2 troubleshooting)

I don't think so, the code was posted to a topic. It was a cronjob and not a particularly well written one (in terms of using PunBB code, etc), but it worked. wink

Topic or forum?
Group A is not possible out of the box, Group B is possible if you mean forum and not topic.

1,629

(24 replies, posted in PunBB 1.2 troubleshooting)

Spammers are always going to adapt to new systems. wink
Now then, as to your suggestions:
CAPTCHA: It's not accessible to blind users and would require us to either use PHP sessions (which we use nowhere else) or add our own system for storing data in, say, the online table, both of which are less than ideal. Of course, people are always looking to crack CAPTCHAs using OCR software, so we would probably end up in another arms race against spammers.
Random email: I'd be interested to see how you would do that, I don't think it's actually possible. Of course, each individual forum can change its welcome email to be unique, which is a point I'll be addressing right now wink

Now then, for 1.3, we plan to release several extensions to help deal with spam. The key to addressing spam, however, is realizing how much of it is automated. Just adding a trick to every forum won't help, since spammers will code their bots around it. So, we need to focus on allowing each forum to make its setup unique. smile

1,630

(21 replies, posted in PunBB 1.2 troubleshooting)

kevinnading: How else would you suggest the users be stored efficiently?
Non-verified users have their own group ID, 32000, which can be used to identify them. You can easily write a script to delete members who don't activate within an hour or a day or a year, I've seen people do it.

1,631

(3 replies, posted in PunBB 1.2 troubleshooting)

It sounds like you have a parse error somewhere but display_errors is disabled: are you sure you overwrote all of the PHP files (other than config.php)?

1,632

(10 replies, posted in PunBB 1.2 troubleshooting)

A better way to do this would be to simply make the background-image url point to the PHP file, which then echo's out the contents of the randomly selected image file

1,633

(5 replies, posted in PunBB 1.2 troubleshooting)

Optimize is not the issue there, and as Rickard said a HEAP table can not be optimized. If you want to find the source of the error, enable debug mode and paste the full error.

PunBB doesn't automatically promote users, so you'll have to figure out what modification you installed to do that wink

Moved to Modifications

To answer your question, not without writing a modification

1,637

(5 replies, posted in PunBB 1.2 discussion)

Yes, although I doubt it will make bots stop posting wink
http://punbb.org/forums/viewtopic.php?id=9520

1,638

(18 replies, posted in General discussion)

Mmm, I don't know. Perhaps with Javascript or CSS.

1,639

(18 replies, posted in General discussion)

<!ATTLIST IMG
  %attrs;                              -- %coreattrs, %i18n, %events --
  src         %URI;          #REQUIRED -- URI of image to embed --
  alt         %Text;         #REQUIRED -- short description --
  longdesc    %URI;          #IMPLIED  -- link to long description
                                          (complements alt) --
  name        CDATA          #IMPLIED  -- name of image for scripting --
  height      %Length;       #IMPLIED  -- override height --
  width       %Length;       #IMPLIED  -- override width --
  usemap      %URI;          #IMPLIED  -- use client-side image map --
  ismap       (ismap)        #IMPLIED  -- use server-side image map --
  >

It wouldn't allow a URI wink

1,640

(18 replies, posted in General discussion)

You can't put another image there (I think), the alt text is just text. How would you put another image there?

1,641

(7 replies, posted in PunBB 1.2 discussion)

Mmm, I had a thought, can you make symlinks on Sourceforge?

1,642

(4 replies, posted in General discussion)

User Subscription mod?

Edit: I just created a forum there, you mean the plugin?

Edit2: http://punbb.org/forums/viewtopic.php?pid=44901#p44901

So you're migrating AWAY from PunBB to Drupal? You might be better off asking the Drupal people wink

OK, your lang/Swedish/help.php is not a language file, my guess is it's another copy of help.php. Download the language pack again and replace it smile

Well, posts in PunBB are surrounded by <p></p> in include/parser.php. Have you modified that or viewtopic.php in some way that would display the tags as text?

You actually need to edit the base URL in the database to do this wink

update config set conf_value="newsite" where conf_name="o_base_url"

where newsite is your new base URL
That can be run in the textbox of the DB Management plugin

Upload the DB Management plugin, it can be found on the PunBB downloads page. Then navigate to it in the admin panel and there will be a button at the bottom for repairing all tables. Click that.

Run the following SQL query:

repair table search_words

http://punbb.org/forums/viewtopic.php?id=2658
The sticky at the top of this forum wink

1,650

(7 replies, posted in PunBB 1.2 discussion)

Not being able to upload a style is a problem wink
Tell me in the PunBB-Hosting support forum if you're still having issues and what error you're getting