Creating group named same as existing forum - strange results

rated by 0 users
This post has 4 Replies | 3 Followers

Not Ranked
Posts 12
Points 210
tibor Posted: Thu, Mar 27 2008 9:32 AM

 I'm trying to migrate existing private forums into groups. While exploring new CS2008 beta 2 I found strange thing.

When I create Group with exactly same name as existing forum then that group is automaticaly forum enabled and post in group disscusions are same as in that forum.

In other words:

If you create group named after any existing forum then that forums posts will be shown in newly created group.

  • | Post Points: 35
Top 10 Contributor
Posts 3,424
Points 65,735
CS Developers
Ben Tiedt replied on Thu, Mar 27 2008 10:24 AM

 I've logged issue #378 to investigate this further.  Updates to this issue will be posted to this thread.

Ben Tiedt's Blog

  • | Post Points: 5
Top 25 Contributor
Posts 1,879
Points 37,940
CS Developers
Jose Lema replied on Wed, Apr 2 2008 10:03 PM

Hi tibor,

I cannot reproduce this error locally. If you're able to recreate it, could you use a free tool like Jing and record a quick screencast?

Thanks!

One is glad to be of service...

Jose Lema

  • | Post Points: 20
Not Ranked
Posts 12
Points 210
tibor replied on Thu, Apr 3 2008 1:34 AM

 Sure. I'm sending you link to captured video in PM. I have found workaround while i was creating my current private forums into groups via REST API.

 

This code will produce same error:

Group group = new Group();
string name = ForumName;
group.Name = name;
group.Key = name.ToLower().Replace(' ','_');

and this code works fine:

Group group = new Group();
string name = ForumName;
group.Name = name;
group.Key = "group_" + name.ToLower().Replace(' ','_');

  • | Post Points: 5
Not Ranked
Posts 12
Points 210
tibor replied on Thu, Apr 3 2008 2:47 AM

 I created brand new forum, made few post into it and tryed to reproduce this issue. But this error didn't occured. It seems that my current forums, which was migrated from snitz.

So, this issue is most probably related to migration from snitz.

This code seems to removed issue from migrated forums:


cs_sections set applicationkey=newid() where len(applicationkey) <>36

 

  • | Post Points: 5
Page 1 of 1 (5 items) | RSS
Powered by Community Server (Commercial Edition), by Telligent Systems

Copyright© 2008 Telligent Systems Inc. All rights reserved
CommunityServer.com  •  Telligent.com