A public action method 'Index' was not found on controller 'Umbraco.Web.WebServices.ScheduledPublishController'
Hi,
on a regular basis, the following exception is logged by my error handling solution (Raygun.io):
[HttpException: A public action method 'Index' was not found on controller 'Umbraco.Web.WebServices.ScheduledPublishController'.]
System.Web.Mvc.Controller.HandleUnknownAction(String actionName)
System.Web.Mvc.Controller.
No solutions here but I get these all the time too, logged in my case by Elmah. I'm currently at the 'clear error messages daily' stage but would love a proper fix?
I just solved this on my end: I had url rewrites interfering with Umbraco's call to its ScheduledPublish Controller, so I just removed the rewrites for this call.
I guess this error happens if Umbraco can't call its ScheduledPublish Controller, so you need to look for reasons why it can't:
rewrites?
redirections (http -> https f.ex.)?
ip filters & firewall rules (can the machine request local urls)?
Does it might be related that I cannot see now the nuPickers properties? Becuase a few days ago, we have just changed from HTTP to HTTPS and today got in touch with the following error:
System.Web.HttpException (0x80004005): A public action method 'Index' was not found on controller 'Umbraco.Web.WebServices.ScheduledPublishController'.
at System.Web.Mvc.Controller.HandleUnknownAction(String actionName)
at System.Web.Mvc.Async.AsyncResultWrapper.<>c__DisplayClass4.<MakeVoidDelegate>b__3(IAsyncResult ar)
at System.Web.Mvc.Controller.EndExecuteCore(IAsyncResult asyncResult)
at System.Web.Mvc.Async.AsyncResultWrapper.<>c__DisplayClass4.<MakeVoidDelegate>b__3(IAsyncResult ar)
at System.Web.Mvc.MvcHandler.<>c__DisplayClass8.<BeginProcessRequest>b__3(IAsyncResult asyncResult)
at System.Web.Mvc.Async.AsyncResultWrapper.<>c__DisplayClass4.<MakeVoidDelegate>b__3(IAsyncResult ar)
at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
Also, as mentioned, nuPickers are not working now, where I relate a node with another node.
A public action method 'Index' was not found on controller 'Umbraco.Web.WebServices.ScheduledPublishController'
Hi,
on a regular basis, the following exception is logged by my error handling solution (Raygun.io):
[HttpException: A public action method 'Index' was not found on controller 'Umbraco.Web.WebServices.ScheduledPublishController'.] System.Web.Mvc.Controller.HandleUnknownAction(String actionName) System.Web.Mvc.Controller.
+1 on this one - I see this error occurring every second. Has anyone found a fix?
I've tried a few things like setting a baseurl etc, nothing works.
No solutions here but I get these all the time too, logged in my case by Elmah. I'm currently at the 'clear error messages daily' stage but would love a proper fix?
I just solved this on my end: I had url rewrites interfering with Umbraco's call to its ScheduledPublish Controller, so I just removed the rewrites for this call.
I guess this error happens if Umbraco can't call its ScheduledPublish Controller, so you need to look for reasons why it can't:
Happy debugging.
Hi guys,
Does it might be related that I cannot see now the nuPickers properties? Becuase a few days ago, we have just changed from HTTP to HTTPS and today got in touch with the following error:
Also, as mentioned, nuPickers are not working now, where I relate a node with another node.
Any solutions please?
Thank you.
I too experienced this after installing SSL and forcing https via URL rewrite.
The trick was to update this appsetting to true:
is working on a reply...