Hello Mitchel,
I found out what others have concerning the lack of import module feature in the DNN 5.2.2 version and tried to follow the new way of going about getting my newly compiled module up on my testing environment and after creating the module via manifest I got the same response as another member of the site in that no confirmation happened either error or success.
However unlike the member who got to this point I noticed that after clicking on module definitions the guestbookcs module did not show up in my module definitions so I am not sure if some logic issue is going on with the .dnn file or what.
Here is my fully developed dnn manifest file see if anything looks odd in it that might be erroring out without DNN telling me.
-----------------------------------------------------------------------
<dotnetnuke type="package" version="5.0">
<packages>
<package name="bo.guestbookcs" type="module" version="1.0.0">
<friendlyName>Guestbook Module CS Version</friendlyName>
<description>This is a prett snazzy module for having guests sign your book</description>
<owner>
<name>Bo Suriner</name>
<organization>Bo's Berry Barn</organization>
<url />
<email>
[email protected]</email>
</owner>
<license>
<p> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"). to deal in the Software without restriction. including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the software, and to permit persons to whom the software is funished to do so, subject to the following conditions:
<!--</p>; -->The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. </p> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</P>
</license>
<releaseNotes><p> Example Module < /p></releaseNotes>
<components>
<component type="Script">
<scripts>
<basePath>DesktopModules\guestbookcs</basePath>
<script type="Install">
<name>01.00.00.sqldataprovider</name>
<Version>01.00.00</Version>
</script>
<script type="Uninstall">
<name>uninstall.sqldataprovider</name>
<version>01.00.00</version>
</script>
</scripts>
</component>
<component type="Module">
<desktopModule>
<moduleName>bo.guestbookcs</moduleName>
<foldername>guestbookcs</foldername>
<businessControllerClass></businessControllerClass>
<moduleDefinitions>
<moduleDefinition>
<friendlyName>Guestbook Module CS Version</friendlyName>
<defaultCacheTime>0</defaultCacheTime>
<moduleControls>
<modulecontrol>
<controlKey />
<controlSrc>
DesktopModules/guestbookcs/ViewGuestbookcs.ascx
</controlSrc>
<supportsPartialRendering>True</supportsPartialRendering>
<controlTitle />
<controlType>View</controlType>
<iconFile />
<helpUrl />
<viewOrder>0</viewOrder>
</modulecontrol>
<modulecontrol>
<controlKey>Settings</controlKey>
<controlSrc>
DesktopModules/guestbookcs/ViewSettings.ascx
</controlSrc>
<supportsPartialRendering>False</supportsPartialRendering>
<controlTitle>View Guestbook CS Settings</controlTitle>
<controlType>Edit</controlType>
<iconFile />
<helpUrl />
<viewOrder>0</viewOrder>
</modulecontrol>
</moduleControls>
</moduleDefinition>
<moduleDefinition>
<friendlyName> Sign Guestbook CS
</friendlyName>
<defaultCacheTime>0</defaultCacheTime>
<moduleControl>
<controlKey />
<controlSrc>DesktopModules/guestbookcs/SignGuestbook.ascx</controlSrc>
<supportsPartialRendering>false</supportsPartialRendering>
<controlTitle>Sign Guestbook</controlTitle>
<controltype>View</controltype>
<iconFile />
<helpUrl />
<viewOrder>0</viewOrder>
</moduleControl>
<moduleControl>
<controlKey>Settings</controlKey>
<controlSrc>DesktopModules/guestbookcs/Settings.ascx</controlSrc>
<supportsPartialRendering>false</supportsPartialRendering>
<controlTitle>Sign Guestbook Settings</controlTitle>
<controlType>Edit</controlType>
<iconFile />
<helpUrl />
<viewOrder>0</viewOrder>
</moduleControl>
</moduleDefinition>
</moduleDefinitions>
</desktopModule>
</component>
<component type="Assembly">
<assemblies>
<assembly>
<path>bin</path>
<name>bo.Modules.guestbookcs.dll</name>
</assembly>
</assemblies>
</component>
<component type="File">
<files>
<basePath>DesktopModules\guestbookcs</basePath>
<file>
<path>app_localresources</path>
<name>Editguestbookcs.ascx.resx</name>
</file>
<file>
<path>app_localresources</path>
<name>Settings.aspx.resx</name>
</file>
<file>
<path>app_localresources</path>
<name>Viewguestbookcs.ascx.resx</name>
</file>
<file>
<path>app_localresources</path>
<name>SignGuestbook.ascx.resx</name>
</file>
<file>
<path>app_localresources</path>
<name>ViewSettings.ascx.resx</name>
</file>
<file>
<name>SignGuestbook.ascx</name>
</file>
<file>
<name>ViewSettings.ascx</name>
</file>
<file>
<name>Editguestbookcs.ascx</name>
</file>
<file>
<name>Settings.aspx</name>
</file>
<file>
<name>Viewguestbookcs.ascx</name>
</file>
<file>
<name>module.css</name>
</file>
</files>
</component>
</components>
</package>
</packages>
</dotnetnuke>
----------------------------------------------------------------
thanks,
Bo