Reputation: 1775
I have a DNN version 5 site that has modules that I want to move to another newer DNN 7 site. In the file system for the DNN 5 install I have that module as a collection of .ascx and .vb files. I also have the .dnn file.
I've been searching around how to do this and it seems that I need to package these all those .ascx and .vb files together to install them in my DNN 7 site. Is there no way to simply install them directly from the .dnn manifest file that I have?
Packaging the files up seems pretty involved, such as getting the Visual Studio project templates and using those, etc. But I don't want to create modules right now, I just want to move an existing one from one DNN site to another. Do I really need to get into the whole module development ecosystem just to do that task?
Thanks for your insights!
Upvotes: 0
Views: 276
Reputation: 8943
There are a couple of options.
I prefer option #1, the 2 and 3 in order. #1 because it is the better way to do things long term.
Upvotes: 1