So to centralize Wiki support I am urging users of Ktomics WWWiki to migrate to DotNetNuke Wiki.  For this to work (or be necessary) you need to have a running instance of Ktomics WWWiki running on your DNN instance. The script will then CONVERT your running WWWiki into a DotNetNuke Wiki.. You don't have to do anything to the pages, modules running on your site; they will be converted in place.

Now to do that first you need to go download the new DNN Wiki Module (see the link above) and install the new module (version 4.00.01) into DNN via the HOST>Module Definisions. (*Note you don't need to add an instance of DNN Wiki to your site anywhere, you just have to have the module installed).  Next run the below script from the SQL Page under the HOST tab.  Once you have run the below script, test the pages (they should be working perfectly :-).. If you are comfortable that the system is work you can uninstall the WWWiki module. (or keep it for archival purposes).

WARNING (before you get to see the script): This is unsupported. If you have issues, I'll try to help, but I can't predict every dnn setup. So for your protection remember! Backup, backup and backup more before attempting this transition.

WARNING (before you get to see the script): This is unsupported. If you have issues, I'll try to help, but I can't predict every dnn setup. So for your protection remember! Backup, backup and backup more before attempting this transition.

WARNING (before you get to see the script): This is unsupported. If you have issues, I'll try to help, but I can't predict every dnn setup. So for your protection remember! Backup, backup and backup more before attempting this transition.

Ok now that you have read the warning 3 times (and if you haven't go read it its right above this line of text!) below is the migration script.

declare @wikiDefID as int
declare @KtomicswwwikiDefID as int 

select @WikiDefID = ModuleDefID from {databaseOwner}{objectQualifier}ModuleDefinitions where FriendlyName = 'Wiki'
select @KtomicswwwikiDefID = ModuleDefID from {databaseOwner}{objectQualifier}ModuleDefinitions where FriendlyName = 'Ktomics WWWiki' 

set identity_insert {databaseOwner}{objectQualifier}Wiki_Topic on 

insert into {databaseOwner}{objectQualifier}Wiki_Topic (TopicID, ModuleID, Content, Cache, Name, UpdateDate, UpdatedBy, UpdatedByUserID, AllowDiscussions, AllowRatings, RatingOneCount, RatingTwoCount, RatingThreeCount, RatingFourCount, RatingFiveCount, RatingSixCount, RatingSevenCount, RatingEightCount, RatingNineCount, RatingTenCount) 
Select TopicID, ModuleID, Content, Cache, Name, UpdateDate, UpdatedBy, UpdatedByUserID, AllowDiscussions, AllowRatings, RatingOneCount, RatingTwoCount, RatingThreeCount, RatingFourCount, RatingFiveCount, RatingSixCount, RatingSevenCount, RatingEightCount, RatingNineCount, RatingTenCount from {databaseOwner}{objectQualifier}Ktomics_WWWiki_Topic 

set identity_insert {databaseOwner}{objectQualifier}Wiki_Topic off 

set identity_insert {databaseOwner}{objectQualifier}Wiki_TopicHistory on
insert into {databaseOwner}{objectQualifier}Wiki_TopicHistory (TopicHistoryID, TopicID, Content, Cache, Name, UpdateDate, UpdatedBy, UpdatedByUserID)
select TopicHistoryID, TopicID, Content, Cache, Name, UpdateDate, UpdatedBy, UpdatedByUserID from {databaseOwner}{objectQualifier}Ktomics_WWWiki_TopicHistory
set identity_insert {databaseOwner}{objectQualifier}Wiki_TopicHistory off 

set identity_insert {databaseOwner}{objectQualifier}Wiki_Comments on
insert into {databaseOwner}{objectQualifier}Wiki_Comments (CommentId, Name, Email, Comment, Datetime, Ip, ParentId)
select CommentId, Name, Email, Comment, Datetime, Ip, ParentId from {databaseOwner}{objectQualifier}Ktomics_WWWIki_Comments
set identity_insert {databaseOwner}{objectQualifier}Wiki_Comments off 

set identity_insert {databaseOwner}{objectQualifier}Wiki_CommentParents on
insert into {databaseOwner}{objectQualifier}Wiki_CommentParents (CommentParentId, Name, ParentId)
select CommentParentId, Name, ParentId from {databaseOwner}{objectQualifier}Ktomics_WWWIki_CommentParents
set identity_insert {databaseOwner}{objectQualifier}Wiki_CommentParents off 

set identity_insert {databaseOwner}{objectQualifier}Wiki_Settings on
insert into {databaseOwner}{objectQualifier}Wiki_Settings (SettingID, ModuleID, ContentEditorRoles, AllowDiscussions, AllowRatings)
select SettingID, ModuleID, ContentEditorRoles, AllowDiscussions, AllowRatings from {databaseOwner}{objectQualifier}Ktomics_WWWiki_Settings
set identity_insert {databaseOwner}{objectQualifier}Wiki_Settings off 

update {databaseOwner}{objectQualifier}Modules set ModuleDefID = @wikiDefID where ModuleDefID = @KtomicswwwikiDefID