<?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: Betreft: Re: Betreft: Re: 3.2.2  Runtime error</title><link>http://forums.asp.net/thread/1267381.aspx</link><pubDate>Tue, 25 Apr 2006 05:36:01 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1267381</guid><dc:creator>muqueca</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1267381.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=1267381</wfw:commentRss><description>&lt;p&gt;Jos,&lt;/p&gt;
&lt;p&gt;Is the solution for the 3.2.2 upgrade from 3.1.1? How can I apply this if the site is not working?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Re: Betreft: Re: Betreft: Re: 3.2.2  Runtime error</title><link>http://forums.asp.net/thread/1248129.aspx</link><pubDate>Wed, 05 Apr 2006 02:33:54 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1248129</guid><dc:creator>jlojko</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1248129.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=1248129</wfw:commentRss><description>&lt;p&gt;Jos.&lt;/p&gt;
&lt;p&gt;Thank you for your solution.&amp;nbsp; This was a great help and I am very thankful for your assistance.&amp;nbsp; I seems to have worked fine with one of my installations.&amp;nbsp; I will now go to the others.&lt;/p&gt;
&lt;p&gt;Again, thanks&lt;/p&gt;
&lt;p&gt;Jack&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Re: Betreft: Re: Betreft: Re: 3.2.2  Runtime error</title><link>http://forums.asp.net/thread/1224043.aspx</link><pubDate>Sun, 12 Mar 2006 09:28:29 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1224043</guid><dc:creator>dawoe</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1224043.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=1224043</wfw:commentRss><description>I'm glad that it helped you out.&lt;br /&gt;</description></item><item><title>Betreft: Re: Betreft: Re: 3.2.2  Runtime error</title><link>http://forums.asp.net/thread/1222963.aspx</link><pubDate>Fri, 10 Mar 2006 17:12:37 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1222963</guid><dc:creator>JosRichters</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1222963.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=1222963</wfw:commentRss><description>&lt;p&gt;I got it!&lt;/p&gt;
&lt;p&gt;Just run this SQL script in your SQL manager in the host menu:&lt;/p&gt;&lt;font size=2&gt;
&lt;p&gt;if exists (select * from dbo.sysobjects where id = object_id(N'GetFiles') and OBJECTPROPERTY(id, N'IsProcedure') = 1)&lt;/p&gt;
&lt;p&gt;drop procedure GetFiles&lt;/p&gt;
&lt;p&gt;GO&lt;/p&gt;&lt;/font&gt;&lt;font size=1&gt;
&lt;p&gt;CREATE procedure dbo.GetFiles&lt;/p&gt;
&lt;p&gt;@PortalId int,&lt;/p&gt;
&lt;p&gt;@Folder nvarchar(200)&lt;/p&gt;
&lt;p&gt;as&lt;/p&gt;
&lt;p&gt;select FileId,&lt;/p&gt;
&lt;p&gt;PortalId,&lt;/p&gt;
&lt;p&gt;FileName,&lt;/p&gt;
&lt;p&gt;Extension,&lt;/p&gt;
&lt;p&gt;Size,&lt;/p&gt;
&lt;p&gt;WIdth,&lt;/p&gt;
&lt;p&gt;Height,&lt;/p&gt;
&lt;p&gt;ContentType,&lt;/p&gt;
&lt;p&gt;Folder&lt;/p&gt;
&lt;p&gt;from Files&lt;/p&gt;
&lt;p&gt;where ((PortalId = @PortalId AND Folder=@Folder) or (@PortalId is null and PortalId is null AND Folder=@Folder))&lt;/p&gt;
&lt;p&gt;order by FileName&lt;/p&gt;
&lt;p&gt;GO&lt;/p&gt;
&lt;p&gt;&lt;font size=3&gt;&lt;strong&gt;and you should be fine. (But first in your testenvironment!)&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size=3&gt;&lt;strong&gt;I ran a test in my TESTDNN&amp;nbsp;by deleting the 'Folder' line and deleting the , behind the &lt;/strong&gt;&lt;/font&gt;&lt;font size=1&gt;ContentType, &lt;/font&gt;&lt;font size=3&gt;&lt;strong&gt;to ferify that this caused the error, wich it did.&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;font size=3&gt;Then I ran the SQL script and checked the outcome. This was OK, so I did the same in my production portal.&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;font size=3&gt;Eureka!&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;font size=3&gt;Thanks for your help.&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;font size=3&gt;Jos.&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/font&gt;</description></item><item><title>Betreft: Re: Betreft: Re: 3.2.2  Runtime error</title><link>http://forums.asp.net/thread/1222897.aspx</link><pubDate>Fri, 10 Mar 2006 16:31:57 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1222897</guid><dc:creator>JosRichters</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1222897.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=1222897</wfw:commentRss><description>&lt;p&gt;This is the stored procedure in my DNN 3.2.2.&lt;/p&gt;&lt;font size=1&gt;
&lt;p&gt;CREATE procedure dbo.GetFiles&lt;/p&gt;
&lt;p&gt;@PortalId int,&lt;/p&gt;
&lt;p&gt;@Folder nvarchar(200)&lt;/p&gt;
&lt;p&gt;as&lt;/p&gt;
&lt;p&gt;select FileId,&lt;/p&gt;
&lt;p&gt;PortalId,&lt;/p&gt;
&lt;p&gt;FileName,&lt;/p&gt;
&lt;p&gt;Extension,&lt;/p&gt;
&lt;p&gt;Size,&lt;/p&gt;
&lt;p&gt;WIdth,&lt;/p&gt;
&lt;p&gt;Height,&lt;/p&gt;
&lt;p&gt;ContentType&lt;/p&gt;
&lt;p&gt;from Files&lt;/p&gt;
&lt;p&gt;where ((PortalId = @PortalId AND Folder=@Folder) or (@PortalId is null and PortalId is null AND Folder=@Folder))&lt;/p&gt;
&lt;p&gt;order by FileName&lt;/p&gt;
&lt;p&gt;GO&lt;/p&gt;
&lt;p&gt;I can't see anything strange at it.&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Jos&lt;/p&gt;&lt;/font&gt;</description></item><item><title>Re: Betreft: Re: 3.2.2  Runtime error</title><link>http://forums.asp.net/thread/1222702.aspx</link><pubDate>Fri, 10 Mar 2006 14:11:13 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1222702</guid><dc:creator>dawoe</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1222702.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=1222702</wfw:commentRss><description>It seems all the errors occur after a dnn upgrade.&lt;br /&gt;&lt;br /&gt;This error says the field 'Folder' isn't in the datareader. Check the the stored procedure GetFiles. It should return the Folder as last column. If not the upgrade failed. So&lt;br /&gt;check the upgrade log files for errors. They can be found in the folder Providers\DataProviders\SQLDataprovider&lt;br /&gt;&lt;br /&gt;But then it's still strange that this error occurs, because i don't see the field Folder get called in the UrlControl code.&lt;br /&gt;</description></item><item><title>Betreft: Re: 3.2.2  Runtime error</title><link>http://forums.asp.net/thread/1222583.aspx</link><pubDate>Fri, 10 Mar 2006 11:21:12 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1222583</guid><dc:creator>JosRichters</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1222583.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=1222583</wfw:commentRss><description>&lt;p&gt;You are NOT alone!&lt;br /&gt;I have this problem too! It happend after an upgrade of the Gooddogs repositry module.&lt;br /&gt;The log says: " Page Load Exception&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class=Normal id=dnn_ctr375_LogViewer_dlLog__ctl1_lblException&gt;&lt;b&gt;AssemblyVersion&lt;/b&gt;: 03.02.02&lt;br /&gt;&lt;b&gt;Method&lt;/b&gt;: System.Data.Common.FieldNameLookup.GetOrdinal&lt;br /&gt;&lt;b&gt;FileName&lt;/b&gt;: &lt;br /&gt;&lt;b&gt;FileLineNumber&lt;/b&gt;: 0&lt;br /&gt;&lt;b&gt;FileColumnNumber&lt;/b&gt;: 0&lt;br /&gt;&lt;b&gt;PortalID&lt;/b&gt;: 1&lt;br /&gt;&lt;b&gt;PortalName&lt;/b&gt;: Het Windmolenbroek&lt;br /&gt;&lt;b&gt;UserID&lt;/b&gt;: 1&lt;br /&gt;&lt;b&gt;UserName&lt;/b&gt;: host&lt;br /&gt;&lt;b&gt;ActiveTabID&lt;/b&gt;: 144&lt;br /&gt;&lt;b&gt;ActiveTabName&lt;/b&gt;: FotoCompetitie&lt;br /&gt;&lt;b&gt;AbsoluteURL&lt;/b&gt;: /Default.aspx&lt;br /&gt;&lt;b&gt;AbsoluteURLReferrer&lt;/b&gt;: http://www.in-almelo.com/FotoCompetitie/tabid/144/ctl/Module/ModuleId/763/Default.aspx&lt;br /&gt;&lt;b&gt;ExceptionGUID&lt;/b&gt;: 06b53e08-15c4-4c8f-bb6f-5dabfa30cce3&lt;br /&gt;&lt;b&gt;DefaultDataProvider&lt;/b&gt;: DotNetNuke.Data.SqlDataProvider, DotNetNuke.SqlDataProvider&lt;br /&gt;&lt;b&gt;InnerException&lt;/b&gt;: Folder&lt;br /&gt;&lt;b&gt;Message&lt;/b&gt;: DotNetNuke.Services.Exceptions.PageLoadException: Folder ---&amp;gt; System.IndexOutOfRangeException: Folder at System.Data.Common.FieldNameLookup.GetOrdinal(String fieldName) at System.Data.SqlClient.SqlDataReader.GetOrdinal(String name) at System.Data.SqlClient.SqlDataReader.get_Item(String name) at DotNetNuke.Common.Globals.GetFileList(Int32 PortalId, String strExtensions, Boolean NoneSpecified, String Folder, Boolean includeHidden) at DotNetNuke.UI.UserControls.UrlControl.GetFileList(String strExtensions, Boolean NoneSpecified, String Folder) at DotNetNuke.UI.UserControls.UrlControl.cboFolders_SelectedIndexChanged(Object sender, EventArgs e) at System.Web.UI.WebControls.ListControl.OnSelectedIndexChanged(EventArgs e) at System.Web.UI.WebControls.DropDownList.System.Web.UI.IPostBackDataHandler.RaisePostDataChangedEvent() at System.Web.UI.Page.RaiseChangedEvents() at System.Web.UI.Page.ProcessRequestMain() --- End of inner exception stack trace ---&lt;br /&gt;&lt;b&gt;StackTrace&lt;/b&gt;: &lt;br /&gt;&lt;b&gt;Source&lt;/b&gt;: &lt;br /&gt;&lt;b&gt;Server Naam&lt;/b&gt;: DEDI374&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class=Normal&gt;I too posted this error some time ago, and NO-ONE came to rescue...&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class=Normal&gt;Jos&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Re: 3.2.2  Runtime error</title><link>http://forums.asp.net/thread/1203033.aspx</link><pubDate>Sun, 19 Feb 2006 18:17:18 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1203033</guid><dc:creator>ecktwo</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1203033.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=1203033</wfw:commentRss><description>Make sure you have used the new web.config file and transfer over settings from your old web.config.&amp;nbsp; There were new config stuff added that fixed the file upload error.</description></item><item><title>Re: 3.2.2  Runtime error</title><link>http://forums.asp.net/thread/1202807.aspx</link><pubDate>Sun, 19 Feb 2006 08:13:52 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1202807</guid><dc:creator>liorlustig</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1202807.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=1202807</wfw:commentRss><description>What is happening with the DNN community ?&lt;br /&gt;In the past each issue was taken seriously, and now there is a DNN core problem and no one says he will take a look ? &lt;br /&gt;The hands of the end users are tide. We can't do anything. We need to wait for someone from the core to hopely take a look. Maybe you should consider special treatment for users with your benefactor program if this is the only way left to get any help from the DNN core team.&lt;br /&gt;</description></item><item><title>Re: 3.2.2  Runtime error</title><link>http://forums.asp.net/thread/1202619.aspx</link><pubDate>Sat, 18 Feb 2006 22:43:45 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1202619</guid><dc:creator>liorlustig</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1202619.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=1202619</wfw:commentRss><description>Any one can help on this ?&lt;br /&gt;There are menu users that have an upgrade problems to DNN 3.2.2.&lt;br /&gt;Can someone offer a fix ?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;</description></item><item><title>Re: 3.2.2  Runtime error</title><link>http://forums.asp.net/thread/1201386.aspx</link><pubDate>Fri, 17 Feb 2006 14:04:01 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1201386</guid><dc:creator>liorlustig</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1201386.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=1201386</wfw:commentRss><description>Hi&lt;br /&gt;I have the exact same problem. After upgrading to DNN 3.2.2 form DNN 3.1.1 I get an error on the FIle Upload module in Admin Settings and in inner modules.&lt;br /&gt;&lt;br /&gt;&lt;span class="NormalRed" id="dnn_ctr346_SiteSettings_ctlLogo__ctl5_lblHeading"&gt;An 
error has occurred.&lt;br /&gt;&lt;/span&gt;&lt;span class="Normal" id="dnn_ctr346_SiteSettings_ctlLogo__ctl5_lblMessage"&gt;DotNetNuke.Services.Exceptions.ModuleLoadException: 
Folder ---&amp;gt; System.IndexOutOfRangeException: Folder at 
System.Data.Common.FieldNameLookup.GetOrdinal(String fieldName) at 
System.Data.SqlClient.SqlDataReader.GetOrdinal(String name) at 
System.Data.SqlClient.SqlDataReader.get_Item(String name) at 
DotNetNuke.Common.Globals.GetFileList(Int32 PortalId, String strExtensions, 
Boolean NoneSpecified, String Folder, Boolean includeHidden) at 
DotNetNuke.UI.UserControls.UrlControl.GetFileList(String strExtensions, Boolean 
NoneSpecified, String Folder) at 
DotNetNuke.UI.UserControls.UrlControl.ShowControls() at 
DotNetNuke.UI.UserControls.UrlControl.Page_Load(Object sender, EventArgs e) --- 
End of inner exception stack trace ---&lt;br /&gt;&lt;br /&gt;Any one have a solution ? I already saw 2 posts about this so I am not alone in this. Doesnt the core team careqa about this issue ? I saw that no one have answered to the 2 other guys with this problem.&lt;br /&gt;Dont you care ?&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;</description></item><item><title>Re: 3.2.2  Runtime error</title><link>http://forums.asp.net/thread/1156263.aspx</link><pubDate>Sun, 01 Jan 2006 07:20:52 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1156263</guid><dc:creator>patk</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1156263.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=1156263</wfw:commentRss><description>&lt;p&gt;Just A Follow up this is happening across all my sites but only since i upgarded to 3.2.2 everything was working fine before the upgrade have included error info can anyone help to decode this error&lt;/p&gt;
&lt;p&gt;Thanks &lt;/p&gt;
&lt;p&gt;Pat&lt;/p&gt;
&lt;p&gt;&lt;span class=Normal id=dnn_ctr790_LogViewer_dlLog__ctl1_lblException&gt;&lt;b&gt;AssemblyVersion&lt;/b&gt;: 03.02.02&lt;br /&gt;&lt;b&gt;Method&lt;/b&gt;: System.Data.Common.FieldNameLookup.GetOrdinal&lt;br /&gt;&lt;b&gt;FileName&lt;/b&gt;: &lt;br /&gt;&lt;b&gt;FileLineNumber&lt;/b&gt;: 0&lt;br /&gt;&lt;b&gt;FileColumnNumber&lt;/b&gt;: 0&lt;br /&gt;&lt;b&gt;PortalID&lt;/b&gt;: 9&lt;br /&gt;&lt;b&gt;PortalName&lt;/b&gt;: **********&lt;br /&gt;&lt;b&gt;UserID&lt;/b&gt;: 1&lt;br /&gt;&lt;b&gt;UserName&lt;/b&gt;: host&lt;br /&gt;&lt;b&gt;ActiveTabID&lt;/b&gt;: 358&lt;br /&gt;&lt;b&gt;ActiveTabName&lt;/b&gt;: Site Settings&lt;br /&gt;&lt;b&gt;AbsoluteURL&lt;/b&gt;: /Default.aspx&lt;br /&gt;&lt;b&gt;AbsoluteURLReferrer&lt;/b&gt;: &lt;br /&gt;&lt;b&gt;ExceptionGUID&lt;/b&gt;: c4073e69-53dc-43b2-9557-92a77d112a2b&lt;br /&gt;&lt;b&gt;DefaultDataProvider&lt;/b&gt;: DotNetNuke.Data.SqlDataProvider, DotNetNuke.SqlDataProvider&lt;br /&gt;&lt;b&gt;InnerException&lt;/b&gt;: Unhandled Error: &lt;br /&gt;&lt;b&gt;Message&lt;/b&gt;: System.Exception: Unhandled Error: ---&amp;gt; DotNetNuke.Services.Exceptions.PageLoadException: An error has occurred. ---&amp;gt; DotNetNuke.Services.Exceptions.ModuleLoadException: An error has occurred. ---&amp;gt; System.IndexOutOfRangeException: Folder at System.Data.Common.FieldNameLookup.GetOrdinal(String fieldName) at System.Data.SqlClient.SqlDataReader.GetOrdinal(String name) at System.Data.SqlClient.SqlDataReader.get_Item(String name) at DotNetNuke.Common.Globals.GetFileList(Int32 PortalId, String strExtensions, Boolean NoneSpecified, String Folder, Boolean includeHidden) at DotNetNuke.UI.UserControls.UrlControl.GetFileList(String strExtensions, Boolean NoneSpecified, String Folder) at DotNetNuke.UI.UserControls.UrlControl.ShowControls() at DotNetNuke.UI.UserControls.UrlControl.Page_Load(Object sender, EventArgs e) --- End of inner exception stack trace --- at DotNetNuke.Services.Exceptions.Exceptions.ProcessModuleLoadException(String FriendlyMessage, Control UserCtrl, Exception exc) at DotNetNuke.Services.Exceptions.Exceptions.ProcessModuleLoadException(Control UserCtrl, Exception exc) at DotNetNuke.UI.UserControls.UrlControl.Page_Load(Object sender, EventArgs e) at System.Web.UI.Control.OnLoad(EventArgs e) at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Page.ProcessRequestMain() --- End of inner exception stack trace --- at DotNetNuke.Services.Exceptions.Exceptions.ProcessPageLoadException(Exception exc, String URL) at DotNetNuke.Framework.PageBase.Page_Error(Object Source, EventArgs e) at System.Web.UI.TemplateControl.OnError(EventArgs e) at System.Web.UI.Page.HandleError(Exception e) at System.Web.UI.Page.ProcessRequestMain() at System.Web.UI.Page.ProcessRequest() at System.Web.UI.Page.ProcessRequest(HttpContext context) at System.Web.CallHandlerExecutionStep.System.Web.HttpApplication+IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean&amp;amp; completedSynchronously) --- End of inner exception stack trace ---&lt;/span&gt;&lt;/p&gt;</description></item><item><title>3.2.2  Runtime error</title><link>http://forums.asp.net/thread/1156121.aspx</link><pubDate>Sat, 31 Dec 2005 19:37:28 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1156121</guid><dc:creator>patk</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1156121.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=1156121</wfw:commentRss><description>&lt;p&gt;Hi All &lt;br /&gt;Recently upgarded to 3.2.2.&amp;nbsp; now i have a slight problem, all my existing child sites are working fine but i have just setup a new one, I go to site settings i am presented with "Server Error in '/' Application"&amp;nbsp; this also happens when ever i go to module settings&lt;br /&gt;the DNN app is hosted with WH4L&lt;/p&gt;
&lt;p&gt;can anyone shed some light on this one?&lt;br /&gt;Thanks &lt;/p&gt;
&lt;p&gt;Pat&lt;/p&gt;</description></item></channel></rss>