<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>DotNetNuke</title><link>http://www.dotnetnuke.com/tabid/795/Default.aspx</link><description>Discussions of DotNetNuke for ASP.NET 1.x and above.  &lt;a href="http://www.dotnetnuke.com/" target="_blank"&gt;DNN Home&lt;/a&gt; &lt;a href="http://aspadvice.com/SignUp/list.aspx?l=105&amp;c=25" target="_blank"&gt;Email List&lt;/a&gt;</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Re: How to install a changed module on a live production server</title><link>http://forums.asp.net/thread/1041638.aspx</link><pubDate>Sun, 04 Sep 2005 16:07:34 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1041638</guid><dc:creator>hooligannes97</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1041638.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=1041638</wfw:commentRss><description>When there's no installed version of a module. The PA installer will read each consecutive version of the SqlDataProvider scripts from the lower version number until it reaches the highest version number. If there is an installed version, the installer will only run higher versions. The current version is saved in the DB and it is compared with the one indicated&amp;nbsp;in the DNN manifest file. The SqlDataProvider script files must be included in this manifest as well.</description></item><item><title>Re: How to install a changed module on a live production server</title><link>http://forums.asp.net/thread/1041570.aspx</link><pubDate>Sun, 04 Sep 2005 11:45:22 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1041570</guid><dc:creator>k4gdw</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1041570.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=1041570</wfw:commentRss><description>Sorry it took me so long to get back, life got in the way.&amp;nbsp;
Anyways, so it automagically knows to run previous *.SqlDataProvider
files if, and only if, it's a new install.&amp;nbsp; I just want to be sure
so here's a hypothetical, and probably common, scenario.&amp;nbsp; Module
version 3.00.00 has just been released.&amp;nbsp; It's PA includes
*.SqlDataProvider files from version 1.00.00 with each successive file
containing only the sql needed, if any, to upgrade from the previous
version.&amp;nbsp; A site that has been running version 2.00.05 downloads
and installs the new version.&amp;nbsp; Would I be correct to assume that
DNN will start with the next *.SqlDataProvider file, say
2.00.06.SqlDataProvider and ignore the earlier ones?&amp;nbsp; I'm being so
cautious because we're evaluating using DNN at my job and will likely
have some custom modules where it would be very bad to lose data.&amp;nbsp;
We keep off site backups, but still it's best to do whatever we can to
avoid having to use them.&lt;br&gt;</description></item><item><title>Re: How to install a changed module on a live production server</title><link>http://forums.asp.net/thread/1040925.aspx</link><pubDate>Fri, 02 Sep 2005 23:43:55 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1040925</guid><dc:creator>DBuckner</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1040925.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=1040925</wfw:commentRss><description>Yes, Increment version numbers of the provider. e.g. 01.00.00.SqlDataProvider, 01.01.00.SqlDataProvider, 01.02.00.SqlDataProvider, etc. Make sure you also change your .DNN file version info &amp;lt;version&amp;gt;01.00.00&amp;lt;/version&amp;gt; etc. I also like to make my assembly versions match, but that's just me. &lt;img src="/emoticons/emotion-2.gif" alt="Big Smile [:D]" /&gt;&lt;BR&gt;&lt;BR&gt;Cheers,&lt;BR&gt;Dave</description></item><item><title>Re: How to install a changed module on a live production server</title><link>http://forums.asp.net/thread/1040696.aspx</link><pubDate>Fri, 02 Sep 2005 18:51:24 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1040696</guid><dc:creator>k4gdw</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1040696.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=1040696</wfw:commentRss><description>Is there a way to have one PA that can be used to either upgrade an
existing module or install it fresh depending on wether or not the
previous version is installed?&amp;nbsp; Possibly have the
newVersion.SqlDataProvider script do a check for the existance of the
previous version(s) and if found execute the appropriate SQL so as to
avoid blowing away existing data.?&lt;br&gt;</description></item><item><title>Re: How to install a changed module on a live production server</title><link>http://forums.asp.net/thread/990694.aspx</link><pubDate>Mon, 18 Jul 2005 10:38:32 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:990694</guid><dc:creator>npeeters</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/990694.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=990694</wfw:commentRss><description>The clean way, obviously, is to update the versions in the .DNN file in
the PA and upload it. Will take care of all updates of files. You can
even include an update SQL script to run.&lt;br&gt;
&lt;br&gt;
The quick and dirty way during development is indeed copying the DLL,
ASCX and any resource files (RESX, images, ...) over the original ones.&lt;br&gt;
&lt;br&gt;</description></item><item><title>Re: How to install a changed module on a live production server</title><link>http://forums.asp.net/thread/990429.aspx</link><pubDate>Mon, 18 Jul 2005 00:15:20 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:990429</guid><dc:creator>alewis25</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/990429.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=990429</wfw:commentRss><description>Yes it is a module I built and I updated both code and GUI&lt;br&gt;</description></item><item><title>Re: How to install a changed module on a live production server</title><link>http://forums.asp.net/thread/990286.aspx</link><pubDate>Sun, 17 Jul 2005 18:10:53 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:990286</guid><dc:creator>adefwebserver</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/990286.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=990286</wfw:commentRss><description>&lt;BLOCKQUOTE&gt;&lt;table width="85%"&gt;&lt;tr&gt;&lt;td class="txt4"&gt;&lt;img src="/Themes/default/images/icon-quote.gif"&gt;&amp;nbsp;&lt;strong&gt;hooligannes97 wrote:&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class="quoteTable"&gt;&lt;table width="100%"&gt;&lt;tr&gt;&lt;td width="100%" valign="top" class="txt4"&gt; I think, in the starting post, he implies he's developing the module.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/BLOCKQUOTE&gt;&lt;BR&gt;Opps read too fast.</description></item><item><title>Re: How to install a changed module on a live production server</title><link>http://forums.asp.net/thread/990269.aspx</link><pubDate>Sun, 17 Jul 2005 17:36:30 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:990269</guid><dc:creator>hooligannes97</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/990269.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=990269</wfw:commentRss><description>&lt;BLOCKQUOTE&gt;&lt;table width="85%"&gt;&lt;tr&gt;&lt;td class="txt4"&gt;&lt;img src="/Themes/default/images/icon-quote.gif"&gt;&amp;nbsp;&lt;strong&gt;adefwebserver wrote:&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class="quoteTable"&gt;&lt;table width="100%"&gt;&lt;tr&gt;&lt;td width="100%" valign="top" class="txt4"&gt;
&lt;P&gt;Is this a module you created or one you bought? if you bought it I would be concerned with the"upgrade path". If you manually upgrade a module and then later install the module the normal way it may not upgrade properly.&lt;/P&gt;
&lt;P&gt;As a module developer&amp;nbsp;I know I am always making an assumption that the person installed the last version the normal way.&lt;BR&gt;&lt;BR&gt;If it is a module you bought&amp;nbsp;I would backup the database and all the files in the dotnetnuke directory. Then I would install the module. &lt;/P&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/BLOCKQUOTE&gt;&lt;BR&gt;&lt;BR&gt;I think, in the starting post, he implies he's developing the module.</description></item><item><title>Re: How to install a changed module on a live production server</title><link>http://forums.asp.net/thread/990266.aspx</link><pubDate>Sun, 17 Jul 2005 17:32:22 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:990266</guid><dc:creator>adefwebserver</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/990266.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=990266</wfw:commentRss><description>&lt;P&gt;Is this a module you created or one you bought? if you bought it I would be concerned with the"upgrade path". If you manually upgrade a module and then later install the module the normal way it may not upgrade properly.&lt;/P&gt;
&lt;P&gt;As a module developer&amp;nbsp;I know I am always making an assumption that the person installed the last version the normal way.&lt;BR&gt;&lt;BR&gt;If it is a module you bought&amp;nbsp;I would backup the database and all the files in the dotnetnuke directory. Then I would install the module. &lt;/P&gt;</description></item><item><title>Re: How to install a changed module on a live production server</title><link>http://forums.asp.net/thread/990226.aspx</link><pubDate>Sun, 17 Jul 2005 16:26:10 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:990226</guid><dc:creator>hooligannes97</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/990226.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=990226</wfw:commentRss><description>&lt;P&gt;If you only changed code, yes. If you changed the GUI, both the dll and respective ascx files need to be updated.&lt;/P&gt;</description></item><item><title>Re: How to install a changed module on a live production server</title><link>http://forums.asp.net/thread/989990.aspx</link><pubDate>Sun, 17 Jul 2005 02:30:54 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:989990</guid><dc:creator>alewis25</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/989990.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=989990</wfw:commentRss><description>so basically just place the new files where they need to go and that should be fine for my changed module?&lt;br&gt;</description></item><item><title>Re: How to install a changed module on a live production server</title><link>http://forums.asp.net/thread/989961.aspx</link><pubDate>Sun, 17 Jul 2005 00:49:38 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:989961</guid><dc:creator>hooligannes97</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/989961.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=989961</wfw:commentRss><description>If you only changed code, just replace the old dll with the new one. Unless you need to reset tables to zero, that's all you need.</description></item><item><title>How to install a changed module on a live production server</title><link>http://forums.asp.net/thread/989903.aspx</link><pubDate>Sat, 16 Jul 2005 19:53:53 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:989903</guid><dc:creator>alewis25</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/989903.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=989903</wfw:commentRss><description>I have my module that was fine a couple of weeks ago(DNN version
3.0.12) ,but a requirement changed and now it must be updated.Here is
my question,because I create stuff on my dev copy of DNN the dll for
DotNetNuke is different from the production.Is this going to cause any
type of errors when I deploy that same moduel that has a few changes?If
so How do you do it?&lt;br&gt;</description></item></channel></rss>