Sage North America
Error Diagnostics Info --------------------------------------------------------------- Index was outside the bounds of the array. Error Trace Info --------------------------------------------------------------- at Sage.CMS.Portlets.SuccessStories.Details.Page_Load(Object sender, EventArgs e) in C:\Projects\CMS\Portlets\SuccessStories\Sage.CMS.Portlets.SuccessStories\Details.aspx.cs:line 107 at System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp, Object o, Object t, EventArgs e) at System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) at System.EventHandler.Invoke(Object sender, EventArgs e) at System.Web.UI.Control.OnLoad(EventArgs e) at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) An error has occured on the portal --------------------------------------------------------------- Date/Time of Occurrence: 9/8/2010 2:19:27 AM Server: portletscms.gs.adinternal.com Environment: .com Page causing the error: C:\webcms\internal\SagePortlets\Sage.CMS\Sage.CMS.Portlets.SuccessStories\v3.0.1\webapp\Details.aspx Client IP Address: 10.11.96.64 Browser being used: CCBot/1.0 (+http://www.commoncrawl.org/bot.html) Referring Page: Logon User: Query String: Requested Method: GET Server Protocol: HTTP/1.1 Server Software: Microsoft-IIS/6.0 Machine Name: NAATLWEBPTRL6 Portal Gateway Information --------------------------------------------------------------- Portlet: Sage.CMS.Portlets.SuccessStories.Details Community: http://www.sagecre.com/company/news_room/success_stories/details Sub Portal: http://www.sagecre.com Cookie Struct Variables --------------------------------------------------------------- ASP.NET_SessionId: System.Web.HttpCookie Session Struct Variables --------------------------------------------------------------- Form Variables --------------------------------------------------------------- QueryString Variables ---------------------------------------------------------------

 


Runtime Error

Server Error in '/SAGE.CMS.PORTLETS/SUCCESSSTORIES' Application.

Runtime Error

Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.

Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".


<!-- Web.Config Configuration File -->

<configuration>
    <system.web>
        <customErrors mode="Off"/>
    </system.web>
</configuration>

Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.


<!-- Web.Config Configuration File -->

<configuration>
    <system.web>
        <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
    </system.web>
</configuration>