Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Karl Kopp 121 posts 227 karma points
    Nov 10, 2016 @ 05:40
    Karl Kopp
    0

    Error installing in Umbraco Cloud

    Hi there,

    Just playing around with some packages in Umbraco Cloud, and tried 301 Tracker, and get the error below. Any ideas?

    Well, this is awkward... It seems an error has occurred :-(
    Please post a topic at the forum, including the message above, some information about your setup and the stacktrace below:
    
    Stacktrace: 
    at InfoCaster.Umbraco.UrlTracker.UI.Installer.UrlTrackerInstallerService.HandleException(Exception ex) in D:\kipusoep\Documents\GitHub\UrlTracker\UI\Installer\UrlTrackerInstallerService.asmx.cs:line 173
    at InfoCaster.Umbraco.UrlTracker.UI.Installer.UrlTrackerInstallerService.InstallDashboard() in D:\kipusoep\Documents\GitHub\UrlTracker\UI\Installer\UrlTrackerInstallerService.asmx.cs:line 103
    at System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
    at System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments)
    at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
    at System.Web.Script.Services.WebServiceMethodData.CallMethod(Object target, IDictionary`2 parameters)
    at System.Web.Script.Services.WebServiceMethodData.CallMethodFromRawParams(Object target, IDictionary`2 parameters)
    at System.Web.Script.Services.RestHandler.InvokeMethod(HttpContext context, WebServiceMethodData methodData, IDictionary`2 rawParams)
    at System.Web.Script.Services.RestHandler.ExecuteWebServiceCall(HttpContext context, WebServiceMethodData methodData)
    at System.Web.Script.Services.RestHandler.ProcessRequest(HttpContext context)
    at System.Web.Script.Services.ScriptHandlerFactory.HandlerWrapper.ProcessRequest(HttpContext context)
    at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
    at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
    at System.Web.HttpApplication.PipelineStepManager.ResumeSteps(Exception error)
    at System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext context, AsyncCallback cb)
    at System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context)
    at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)
    at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)
    at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler, RequestNotificationStatus& notificationStatus)
    at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)
    at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)
    
  • Stefan Kip 1606 posts 4098 karma points c-trib
    Nov 10, 2016 @ 07:20
    Stefan Kip
    0

    There should be an exception message before the stacktrace, this is the code being used:

    string HandleException(Exception ex)
    {
        string exceptionString = "error: ";
        if (ex.InnerException != null)
            exceptionString += string.Format("{0} ({1})", ex.Message, ex.InnerException.Message);
        else
            exceptionString += ex.Message;
    
        StackTrace stackTrace = new StackTrace(true);
        exceptionString += " | Stacktrace: " + stackTrace.ToString().Replace("\r", string.Empty).Replace("\n", "<br />");
        return exceptionString;
    }
    

    So now I don't know what the exception was at all.

  • Karl Kopp 121 posts 227 karma points
    Nov 10, 2016 @ 21:52
    Karl Kopp
    0

    Ooops, forgot the most important line ;)

    Installing the dashboard failed: Unable to add dashboard: StartupDashboardSection not found in ~/config/dashboard.config
    
  • Karl Kopp 121 posts 227 karma points
    Nov 10, 2016 @ 21:57
    Karl Kopp
    0

    BTW, here is the dashboard.config from my latest instance:

    <?xml version="1.0" encoding="utf-8"?>
    <dashBoard>
      <section alias="StartupSettingsDashboardSection">
        <areas>
          <area>settings</area>
        </areas>
        <tab caption="Welcome">
          <control showOnce="true" addPanel="true" panelCaption="">
            views/dashboard/settings/settingsdashboardintro.html
          </control>
        </tab>
      </section>
      <section alias="UmbracoDeploy">
        <areas>
          <area>content</area>
        </areas>
        <tab caption="Your workspace">
          <control>/app_plugins/deploy/views/deploy.html</control>
        </tab>
      </section>
      <section alias="StartupDeveloperDashboardSection">
        <areas>
          <area>developer</area>
        </areas>
        <tab caption="Get Started">
          <control showOnce="true" addPanel="true" panelCaption="">
            views/dashboard/developer/developerdashboardvideos.html
          </control>
        </tab>
        <tab caption="Examine Management">
          <control>
            views/dashboard/developer/examinemanagement.html
          </control>
        </tab>
      </section>
      <section alias="StartupMediaDashboardSection">
        <areas>
          <area>media</area>
        </areas>
        <tab caption="Content">
          <control showOnce="false" addPanel="false" panelCaption="">
            views/dashboard/media/mediafolderbrowser.html
          </control>
        </tab>
      </section>
      <section alias="StartupMemberDashboardSection">
        <areas>
          <area>member</area>
        </areas>
        <tab caption="Get Started">
          <control showOnce="true" addPanel="true" panelCaption="">
            views/dashboard/members/membersdashboardvideos.html
          </control>
        </tab>
      </section>
      <section alias="UmbracoModelsBuilder">
        <areas>
          <area>developer</area>
        </areas>
        <tab caption="Models Builder">
          <control>
            /App_Plugins/ModelsBuilder/modelsbuilder.htm
          </control>
        </tab>
      </section>
      <section alias="UmbracoHealthCheck">
        <areas>
          <area>developer</area>
        </areas>
        <tab caption="Health Check">
          <control>
            views/dashboard/developer/healthcheck.html
          </control>
        </tab>
      </section>
      <section alias="RedirectUrlManagement">
        <areas>
          <area>content</area>
        </areas>
        <tab caption="Redirect URL Management">
          <control>
            views/dashboard/developer/redirecturls.html
          </control>
        </tab>
      </section>
      <section alias="StartupFormsDashboardSection">
        <areas>
          <area>forms</area>
        </areas>
        <tab caption="Dashboard">
          <control>/app_plugins/umbracoforms/backoffice/dashboards/licensing.html</control>
          <control>/app_plugins/umbracoforms/backoffice/dashboards/yourforms.html</control>
          <control>/app_plugins/umbracoforms/backoffice/dashboards/activity.html</control>
        </tab>
      </section>
    </dashBoard>
    
  • Sebastian Dammark 547 posts 1287 karma points
    Sep 04, 2017 @ 08:31
    Sebastian Dammark
    0

    What was the solution for this ?

  • Jonathan Woosnam-Li 3 posts 73 karma points
    Oct 14, 2019 @ 16:02
    Jonathan Woosnam-Li
    0

    Having the same issue here.

  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies