<?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>Getting Started</title><link>http://www.dotnetnuke.com/tabid/795/Default.aspx</link><description>Gettings started with DotNetNuke.</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Re: DNN 3.0.13 after install error  An unhandled error has occurred</title><link>http://forums.asp.net/thread/1249026.aspx</link><pubDate>Wed, 05 Apr 2006 18:48:27 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1249026</guid><dc:creator>rmerritt</dc:creator><author>rmerritt</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1249026.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=96&amp;PostID=1249026</wfw:commentRss><description>&lt;p&gt;&lt;em&gt;Object reference not set to an instance of an object.&lt;/em&gt; &lt;/p&gt;
&lt;p&gt;What happened to me was that i had upgraded my Web site to 3.2.2&amp;nbsp;by unzipping the&amp;nbsp;the new version&amp;nbsp;3.2.2 over the top of version 3.1.1 on the production server and everything went great.&lt;/p&gt;
&lt;p&gt;and then i changed my web.config on my development server and uploaded it to the production server and I got &lt;em&gt;Object reference not set to an instance of an object.&lt;/em&gt; &lt;/p&gt;
&lt;p&gt;I never transfered the upgraded web.config file to development before I made my edits. &lt;/p&gt;
&lt;p&gt;I fixed it by transfering my release.config to my development machine copy and pasted my settings (see below)&amp;nbsp;from web.config to the release.config and renamed the release.config to web.config uploaded it and everything is back to normal.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;lt;add key="SiteSqlServer" value="Server=***;Database=***;uid=***;pwd=***;" /&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;add key="MachineValidationKey" value="4F55CB7D0186E80C025E0CEFF5FF8B353936FCE7" /&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;add key="MachineDecryptionKey" value="53AA0D039422AEE9E93EAB06BC9B46051DC7E39F32A18989" /&amp;gt;&lt;/p&gt;
&lt;p&gt;I also needed to get my FCK Editor changes&amp;nbsp;put back into my web.config&lt;/p&gt;
&lt;p&gt;Hope this helps.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Re: DNN 3.0.13 after install error  An unhandled error has occurred</title><link>http://forums.asp.net/thread/1152144.aspx</link><pubDate>Tue, 27 Dec 2005 01:58:41 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1152144</guid><dc:creator>tungdh</dc:creator><author>tungdh</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1152144.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=96&amp;PostID=1152144</wfw:commentRss><description>I have the same problem. You can try to open this website to see more &lt;a href="http://elearningvn.com"&gt;http://elearningvn.com&lt;/a&gt;</description></item><item><title>solution: DNN 3.0.13 after install error  An unhandled error has occurred:</title><link>http://forums.asp.net/thread/980430.aspx</link><pubDate>Thu, 07 Jul 2005 11:07:16 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:980430</guid><dc:creator>docteurDenis</dc:creator><author>docteurDenis</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/980430.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=96&amp;PostID=980430</wfw:commentRss><description>Hi,&lt;br&gt;
&lt;br&gt;
I had the same problem: "Object reference not set exception" thrown in LocalizeTabStripDetails function.&lt;br&gt;
&lt;br&gt;
This comes from a bug in Localisation.vb. This happens when "&lt;font face="Courier New"&gt;ShowMissingKeys&lt;/font&gt;" is set to False in Web.config and no translation is found in localisation ressources files. The &lt;font face="Courier New"&gt;GetString &lt;/font&gt;function load translations in a hasthtable and return the value associated with a key. If there is no translation and &lt;font face="Courier New"&gt;ShowMissingKeys &lt;/font&gt;is set to true, it returns the "RESX: " + the key. &lt;b&gt;But if ShowMissingKeys is set to false, it still try to return the unexistant value of the hashtable&lt;/b&gt;. This hasthtable does not nave this key, that's why it throw the "object reference&amp;nbsp; not set exception".&lt;br&gt;
&lt;br&gt;
SOLUTION:&lt;br&gt;
You have to either set ShowMissingKeys to true, or correct the bug in
the source file, compile the DotNetNuke core and deploy it. You have to
change the function with this signature (line 505 in
Localisation\Localisation.vb):&lt;br&gt;
&lt;font face="Courier New"&gt;Public Shared Function GetString(ByVal name As
String, ByVal ResourceFileRoot As String, ByVal objPortalSettings As
PortalSettings) As String&lt;/font&gt;&lt;br&gt;
&lt;br&gt;
In the &lt;font face="Courier New"&gt;If resources(name) Is Nothing&lt;/font&gt; part of the function, it should return something either if &lt;font face="Courier New"&gt;ShowMissingKeys &lt;/font&gt;is set to true or false in Web.config. Here is the portion of the function to change. The added part is in &lt;font color="#ff0000"&gt;red&lt;/font&gt;:&lt;br&gt;
&lt;br&gt;
&lt;font face="Courier New"&gt;If showMissingKeys Then&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; Return "RESX:" &amp;amp; name&lt;br&gt;
&amp;nbsp;&lt;/font&gt;&lt;font color="#ff0000" face="Courier New"&gt;Else&lt;/font&gt;&lt;font face="Courier New"&gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/font&gt;&lt;font color="#ff0000" face="Courier New"&gt;Return name.Replace(".Text", "").Replace(".String", "")&lt;/font&gt;&lt;font face="Courier New"&gt;&lt;br&gt;
End If&lt;/font&gt;&lt;br&gt;
&lt;br&gt;
The Replace method is only use to erase the suffixes, it is mandatory to correct the bug.&lt;br&gt;
---------------------------------------------------------------------------&lt;br&gt;
&lt;br&gt;
Complete function listing:&lt;br&gt;
&lt;font face="Courier New" size="1"&gt;Public Shared Function
GetString(ByVal name As String, ByVal ResourceFileRoot As String, ByVal
objPortalSettings As PortalSettings) As String&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Load the Local Resource Files resources&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim
resources As Hashtable = GetResource(ResourceFileRoot,
objPortalSettings)&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'make the default translation property ".Text"&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If name.IndexOf(".") &amp;lt; 1 Then&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; name += ".Text"&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'If
the key can't be found try the Shared Resource Files resources&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If
resources Is Nothing OrElse resources(name) Is Nothing Then&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
resources = GetResource(Localization.SharedResourceFile,
objPortalSettings)&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'If
the key still can't be found then it doesn't exist in the Localization
Resources&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If resources(name) Is Nothing Then&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
'This has to be replaced with a function that will add the key to the
xml file (autofill)&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
'Throw New Exception("Value not found in resources.xml for: " + name)&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
Debug.WriteLine("Value not found in resources.xml for: " + name + " in
" + ResourceFileRoot)&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
'simply return the localization key if nothing is found in the resource
file.&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'This will at least prevent an error &lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'check for setting in web.config&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim showMissingKeys As Boolean&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
If
System.Configuration.ConfigurationSettings.AppSettings("ShowMissingKeys")
Is Nothing Then&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
showMissingKeys = False&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Else&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
showMissingKeys =
Boolean.Parse(System.Configuration.ConfigurationSettings.AppSettings("ShowMissingKeys"))&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If showMissingKeys Then&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
Return "RESX:" &amp;amp; name&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;font color="#ff0000"&gt;Else&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
Return name.Replace(".Text", "").Replace(".String", "")&lt;/font&gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Return CStr(resources(name))&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End Function &lt;/font&gt;&lt;br&gt;
&lt;br&gt;
Regards&lt;br&gt;
Denis Sauvé&lt;br&gt;
&lt;br&gt;</description></item><item><title>Re: DNN 3.0.13 after install error  An unhandled error has occurred</title><link>http://forums.asp.net/thread/953772.aspx</link><pubDate>Sat, 11 Jun 2005 18:17:04 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:953772</guid><dc:creator>twister</dc:creator><author>twister</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/953772.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=96&amp;PostID=953772</wfw:commentRss><description>&lt;FONT face=Verdana size=2&gt;You're not going to believe this one... !?!?!?!&lt;BR&gt;&lt;BR&gt;&lt;/FONT&gt;
&lt;P&gt;&lt;FONT face=Verdana size=2&gt;As you know, DNN has an 'admin' directory on its root directory. My host's (Interland)&amp;nbsp;control panel is set to be accessible via a virtual alias named "admin" off the web root. I believe there's a direct conflict between the two.&lt;BR&gt;&lt;BR&gt;So, every time DNN tries to hit the DNN admin directory (&lt;A href="http://xxx.xxx.xxx.xxx/admin/"&gt;http://xxx.xxx.xxx.xxx/admin/&lt;/A&gt;), it gets redirected over to the control panel.&lt;BR&gt;&lt;BR&gt;Last night, I sent Interland a support email requesting they resolve this somehow and suggested they might change the control panel alias to&amp;nbsp;something that wouldn't conflict with DNN, like&amp;nbsp;(&lt;A href="http://xxx.xxx.xxx.xxx/cp/"&gt;http://xxx.xxx.xxx.xxx/cp/&lt;/A&gt;). In part, here was their response:&lt;BR&gt;&lt;BR&gt;"&lt;FONT size=2&gt;Since you are in the shared servers, the URL: &lt;/FONT&gt;&lt;A href="http://xxx.xxx.xxx.xxx/admin"&gt;&lt;U&gt;&lt;FONT color=#0000ff size=2&gt;http://xxx.xxx.xxx.xxx/admin&lt;/U&gt;&lt;/FONT&gt;&lt;/A&gt;&lt;FONT size=2&gt; has already been set in the servers as the URL to access your admin page. We cannot do the changes that you have requested. We apologize for any inconvenience this may have caused. Please contact us should you have additional issues or questions."&lt;BR&gt;&lt;BR&gt;In the first case, I can't believe a host&amp;nbsp;as big as Interland hasn't run up on this before... second, I can't believe anyone would put up with "We cannot do the changes that you have requested" as a legitimate response to this issue. Give me a break - I would have expected this kind of response out of a host that charges $2.95/month; not from a leading provider that I just siged a 24 month contract with.&lt;BR&gt;&lt;BR&gt;Thanks to IcthusTech for pointing this solution out: &lt;A href="/562020/ShowPost.aspx"&gt;http://forums.asp.net/562020/ShowPost.aspx&lt;/A&gt;.&lt;BR&gt;&lt;BR&gt;Now if I can just reach someone at Interland that understands a thing or two about customer service...&lt;BR&gt;&lt;/P&gt;
&lt;P&gt;&lt;/FONT&gt;Chris&lt;/FONT&gt;&lt;/P&gt;</description></item><item><title>Re: DNN 3.0.13 after install error  An unhandled error has occurred</title><link>http://forums.asp.net/thread/953412.aspx</link><pubDate>Sat, 11 Jun 2005 04:01:49 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:953412</guid><dc:creator>twister</dc:creator><author>twister</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/953412.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=96&amp;PostID=953412</wfw:commentRss><description>&lt;P&gt;*bump*&lt;/P&gt;
&lt;P&gt;I'm having this same issue with a clean install of 3.0.13 over at Interland...&lt;/P&gt;
&lt;P&gt;Chris&lt;/P&gt;</description></item><item><title>Re: DNN 3.0.13 after install error  An unhandled error has occurred</title><link>http://forums.asp.net/thread/937036.aspx</link><pubDate>Wed, 25 May 2005 23:09:15 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:937036</guid><dc:creator>Jesarino</dc:creator><author>Jesarino</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/937036.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=96&amp;PostID=937036</wfw:commentRss><description>I'm having the same problem, has anyone figured this out?</description></item><item><title>Re: DNN 3.0.13 after install error  An unhandled error has occurred</title><link>http://forums.asp.net/thread/922674.aspx</link><pubDate>Wed, 11 May 2005 14:45:49 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:922674</guid><dc:creator>rfinsel</dc:creator><author>rfinsel</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/922674.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=96&amp;PostID=922674</wfw:commentRss><description>&lt;P&gt;Same problem here too.&lt;/P&gt;
&lt;P&gt;I ugraded my local DNN 3.1.2 to 3.1.3 Upgrade went smoothly and everything worked. I then uploaded&amp;nbsp;the files and database to my production server. On my first visit the install ran without any errors. I clicked on click here to view your portal and now I am getting the same error as netrunner.&lt;/P&gt;
&lt;P&gt;Does anybody have a suggestion as to how to correct this or even what might be causing it?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanx&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Update:&lt;/P&gt;
&lt;P&gt;I actually got an error message on one of my attempts to browse the portal.&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt; &lt;/P&gt;
&lt;H1&gt;Server Error in '/' Application. 
&lt;HR&gt;
&lt;/H1&gt;
&lt;H2&gt;&lt;I&gt;Object reference not set to an instance of an object.&lt;/I&gt; &lt;/H2&gt;
&lt;P&gt;&lt;/SPAN&gt;&lt;FONT face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif "&gt;&lt;B&gt;Description: &lt;/B&gt;An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. &lt;BR&gt;&lt;BR&gt;&lt;B&gt;Exception Details: &lt;/B&gt;System.NullReferenceException: Object reference not set to an instance of an object.&lt;BR&gt;&lt;BR&gt;&lt;B&gt;Source Error:&lt;/B&gt; &lt;BR&gt;&lt;BR&gt;
&lt;TABLE bgColor=#ffffcc&gt;

&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.&lt;/CODE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TABLE&gt;&lt;BR&gt;&lt;B&gt;&lt;FONT face=Verdana&gt;Stack Trace:&lt;/FONT&gt;&lt;/B&gt; &lt;BR&gt;&lt;BR&gt;
&lt;TABLE bgColor=#ffffcc&gt;

&lt;TR&gt;
&lt;TD&gt;&lt;CODE&gt;&lt;PRE&gt;[NullReferenceException: Object reference not set to an instance of an object.]
   DotNetNuke.Services.Localization.Localization.GetString(String name, String ResourceFileRoot, PortalSettings objPortalSettings) +130
   DotNetNuke.Services.Localization.Localization.GetString(String name, String ResourceFileRoot) +60
   DotNetNuke.Services.Localization.Localization.LocalizeTabStripDetails(ArrayList arrTabStripDetails) +152
   DotNetNuke.Services.Localization.Localization.LocalizePortalSettings() +56
   DotNetNuke.Framework.PageBase.OnInit(EventArgs e) +220
   System.Web.UI.Control.InitRecursive(Control namingContainer) +241
   System.Web.UI.Page.ProcessRequestMain() +197

[PageLoadException: Object reference not set to an instance of an object.]
   DotNetNuke.Services.Exceptions.Exceptions.ProcessPageLoadException(Exception exc, String URL) +350
   DotNetNuke.Framework.PageBase.Page_Error(Object Source, EventArgs e) +366
   System.Web.UI.TemplateControl.OnError(EventArgs e) +109
   System.Web.UI.Page.HandleError(Exception e) +68
   System.Web.UI.Page.ProcessRequestMain() +2100
   System.Web.UI.Page.ProcessRequest() +218
   System.Web.UI.Page.ProcessRequest(HttpContext context) +18
   System.Web.CallHandlerExecutionStep.System.Web.HttpApplication+IExecutionStep.Execute() +179
   System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean&amp;amp; completedSynchronously) +87&lt;/PRE&gt;&lt;/CODE&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TABLE&gt;&lt;/FONT&gt;&lt;/P&gt;</description></item><item><title>Re: DNN 3.0.13 after install error  An unhandled error has occurred</title><link>http://forums.asp.net/thread/917814.aspx</link><pubDate>Fri, 06 May 2005 02:53:01 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:917814</guid><dc:creator>netrunner1987</dc:creator><author>netrunner1987</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/917814.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=96&amp;PostID=917814</wfw:commentRss><description>&lt;P&gt;I am still having this error when I do a fresh install of DB and DNN.&amp;nbsp; I can't be the only one having this type of problem?&amp;nbsp; I also tried this on my laptop and it worked.. I odd thing, I got DNN 3.0.12 working on my dev server and that worked 100%, then I did an upgrade to DNN 3.0.13, and was hit with the same error.&amp;nbsp; Have been trying to get DNN 3.0.12 back working and now I am getting that error now.&amp;nbsp; So both of my DNN 3.0.12 and 3.0.13 installs won't work.. It says in the install page that everything was ok, and when you click to see your portal.. &lt;A href="http://localhost/dotnetnuke/Default.aspx?error=Object+reference+not+set+to+an+instance+of+an+object.&amp;amp;content=0"&gt;http://localhost/dotnetnuke/Default.aspx?error=Object+reference+not+set+to+an+instance+of+an+object.&amp;amp;content=0&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;An unhandled error has occurred. &lt;/P&gt;
&lt;P&gt;I even watched the video to install and got the same error.&lt;/P&gt;
&lt;P&gt;thanks&lt;/P&gt;
&lt;P&gt;netrunner&lt;/P&gt;</description></item><item><title>Re: DNN 3.0.13 after install error  An unhandled error has occurred</title><link>http://forums.asp.net/thread/899056.aspx</link><pubDate>Tue, 19 Apr 2005 21:35:58 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:899056</guid><dc:creator>lablack</dc:creator><author>lablack</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/899056.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=96&amp;PostID=899056</wfw:commentRss><description>&lt;P&gt;I have the exact same problem on a complet fresh install of DNN 3.0.13 on Windows 2003 Small Business Server using SQLServer.&lt;BR&gt;Installation went smooth, but when I click the "Click here to access your portal", I get "&lt;SPAN class=NormalRed id=_ctl0_lblHeading&gt;An error has occurred" (written twice actually)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class=NormalRed&gt;What options do I have to try to locate this error? Can I get any useful info by enabling debug in the web.config?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class=NormalRed&gt;Cheers,&lt;BR&gt;&lt;/SPAN&gt;&lt;SPAN class=NormalRed&gt;Lars&lt;/SPAN&gt;&lt;/P&gt;</description></item><item><title>Re: DNN 3.0.13 after install error  An unhandled error has occurred</title><link>http://forums.asp.net/thread/890472.aspx</link><pubDate>Tue, 12 Apr 2005 18:45:45 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:890472</guid><dc:creator>jshockley</dc:creator><author>jshockley</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/890472.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=96&amp;PostID=890472</wfw:commentRss><description>&lt;P&gt;I am getting the same error after updating 2.1.2 to 3.0.13. All it says on the page is "An unhandled error has occured" with the link that the original poster put in.&lt;/P&gt;
&lt;P&gt;Now, I complied it on my VS.Net and got no errors there. Any ideas?&lt;/P&gt;
&lt;P&gt;Need more information?&lt;/P&gt;</description></item><item><title>Re: DNN 3.0.13 after install error  An unhandled error has occurred</title><link>http://forums.asp.net/thread/887111.aspx</link><pubDate>Sat, 09 Apr 2005 01:02:38 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:887111</guid><dc:creator>ecktwo</dc:creator><author>ecktwo</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/887111.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=96&amp;PostID=887111</wfw:commentRss><description>&lt;P&gt;How did you mapped both //localhost and //localhost/dotnetnuke?&amp;nbsp; Do you have two instances installed?&lt;/P&gt;
&lt;P&gt;If you have one set of files in //localhost, and another at //localhost/dotnetnuke, remove the //localhost instance..&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description></item><item><title>Re: DNN 3.0.13 after install error  An unhandled error has occurred</title><link>http://forums.asp.net/thread/887053.aspx</link><pubDate>Fri, 08 Apr 2005 22:40:44 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:887053</guid><dc:creator>netrunner1987</dc:creator><author>netrunner1987</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/887053.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=96&amp;PostID=887053</wfw:commentRss><description>&lt;P&gt;The only thing displayed on the web browser is&lt;/P&gt;
&lt;P&gt;&amp;nbsp;An unhandled error has occurred. &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and the url now says &lt;A href="http://localhost/Default.aspx?error=Object+reference+not+set+to+an+instance+of+an+object.&amp;amp;content=0"&gt;http://localhost/Default.aspx?error=Object+reference+not+set+to+an+instance+of+an+object.&amp;amp;content=0&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;but I typed in &lt;A href="http://localhost"&gt;http://localhost&lt;/A&gt;&amp;nbsp;, I get the same response if I do &lt;A href="http://localhost/dotnetnuke"&gt;http://localhost/dotnetnuke&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Any suggestions&lt;/P&gt;
&lt;P&gt;thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description></item><item><title>Re: DNN 3.0.13 after install error  An unhandled error has occurred</title><link>http://forums.asp.net/thread/885895.aspx</link><pubDate>Fri, 08 Apr 2005 03:23:32 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:885895</guid><dc:creator>ecktwo</dc:creator><author>ecktwo</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/885895.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=96&amp;PostID=885895</wfw:commentRss><description>&lt;P&gt;Post the full error message.&lt;/P&gt;</description></item><item><title>DNN 3.0.13 after install error  An unhandled error has occurred</title><link>http://forums.asp.net/thread/885795.aspx</link><pubDate>Fri, 08 Apr 2005 00:38:04 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:885795</guid><dc:creator>netrunner1987</dc:creator><author>netrunner1987</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/885795.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=96&amp;PostID=885795</wfw:commentRss><description>&lt;P&gt;I already searched and didn't find anything that would help me, so leads me to post here.&amp;nbsp; After 2nd clean install of DNN 3.0.13 and DB, I am still getting&amp;nbsp;"An unhandled error has occurred."&amp;nbsp; when I hit the site. The url is &lt;A href="http://localhost/dotnetnuke/Default.aspx?error=Object+reference+not+set+to+an+instance+of+an+object.&amp;amp;content=0"&gt;http://localhost/dotnetnuke/Default.aspx?error=Object+reference+not+set+to+an+instance+of+an+object.&amp;amp;content=0&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Hitting &lt;A href="http://localhost"&gt;http://localhost&lt;/A&gt; or &lt;A href="http://localhost/dotnetnuke"&gt;http://localhost/dotnetnuke&lt;/A&gt; gets the same error.&lt;/P&gt;
&lt;P&gt;I don't have VS.NET, so I can't compile it here at work.&lt;/P&gt;
&lt;P&gt;Any suggestions would be great.&amp;nbsp; Windows 2K Server, SQL 2K, MS .Net Framework 1.1 hotfix.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks&lt;/P&gt;
&lt;P&gt;mjc&lt;/P&gt;</description></item></channel></rss>