Hi everyone,
I've (more or less) successfully installed mojoportal on my hosting env. Most of the pages work fine, some however, throw nice exceptions. When I look into the error log, I get this:
[2007-11-22 20:13:16,593 [1] ERROR mojoPortal.Web.Global [2007-11-22 20:14:20,437 [1] ERROR mojoPortal.Web.Global
Which isn't very helpful. Can I extend this error message, with a detailed exception message? Keep in mind, that I'm not very fluent in log4net :-)
This is one of the errors I get on one of the pages:
Server Error in '/' Application.
--------------------------------------------------------------------------------
Object reference not set to an instance of an object.
Description: 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.
Exception Details: System.NullReferenceException: Object reference not set to an instance of an object.
Source Error:
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.
Stack Trace:
[NullReferenceException: Object reference not set to an instance of an object.]
mojoPortal.Web.AdminUI.PageProperties.PopulateLabels() +53
mojoPortal.Web.AdminUI.PageProperties.Page_Load(Object sender, EventArgs e) +274
System.Web.UI.Control.OnLoad(EventArgs e) +99
System.Web.UI.Control.LoadRecursive() +47
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1061
This is another page:
Server Error in '/' Application.
--------------------------------------------------------------------------------
Parser Error
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.
Parser Error Message: Unknown server tag 'portal:mojoOpenIdLogin'.
Source Error:
Line 35: <mp:SiteLabel id="SiteLabel4" runat="server" ForControl="OpenIdLogin1" CssClass="settinglabelFixedHeight" ConfigKey="ManageUsersOpenIDURILabel"></mp:SiteLabel>
Line 36: <div>
Line 37: <portal:mojoOpenIdLogin ValidationGroup="oid" UriValidatorEnabled="false" ID="OpenIdLogin1" runat="server" CssClass="openid_login" />
Line 38: <asp:Label ID="lblLoginFailed" runat="server" EnableViewState="False" Visible="False" />
Line 39: <asp:Label ID="lblLoginCanceled" runat="server" EnableViewState="False" Visible="False" />
Source File: /Secure/UserProfile.aspx Line: 37
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:2.0.50727.832; ASP.NET Version:2.0.50727.832
This last error has to do with OpenId. I removed the dll from the bin, and disabled openid in web.config.. Any ideas?