Has anyone ever had this issue when Submitting new entries ?
The resource cannot be found.
Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
Requested URL: /umbraco/RenderMvc
Am using latest umbraco forms 4.3.3 and U7.5.3
I event removed all the workflows but still nothing is stored.
For anyone looking, I just hit the same error but with a different cause.
I'm using a hijacked controller for the form template, and it needed an [HttpPost] action to post to. In my case the template has an alias of Form and my method is:
[HttpPost]
public ActionResult Form(ContentModel contentModel)
{
return CurrentTemplate(contentModel);
}
The error message explaining that this was required was in the source of the error page, visible in DevTools.
cant Submit Entries
Hi,
Has anyone ever had this issue when Submitting new entries ?
Am using latest umbraco forms 4.3.3 and U7.5.3
I event removed all the workflows but still nothing is stored.
Any idea is missing ?
Fuji,
Hi Fuji,
Sorry to hear you are having problems.
The path
/Umbraco/RenderMVC
I believe is an Umbraco core CMS for general routing.Are you do any custom redirects or added any custom routes to your solution at all that may be interfering with this perhaps?
Cheers,
Warren :)
Hi Warren,
No redirects and or any custom routes. Just using the basics form.
Hi Fuji,
Hmm how very odd. Any info you can provide such as any repro steps.
Does this happen on all sites/environments (Local, Dev, Staging, Live)?
Backup DB& files before trying so you can restore quickly, but uninstall/removing forms does the error then go away?
Do you have any other forms on the site (search etc) that would use SurfaceControllers etc to test with that are non Umbraco Forms?
Any other pointers you can give me from the log files or any other steps to reproduce so I can help you Fuji.
Thanks,
Warren
No its a clean new instance of umbraco running on azure.
Tried to create a new form but still getting the same error and no other forms running on the site.
stupid one .....
there was this tag in my template
<form runat="server" >
Thanks for your help and time Warren
Glad you manage to find the issue yourself Fuji. You may want to edit your post as I am unable to see what tag/markup/code you mean.
So that anyone searching or coming across this thread later on can learn from.
Thanks,
Warren
For anyone looking, I just hit the same error but with a different cause.
I'm using a hijacked controller for the form template, and it needed an
[HttpPost]
action to post to. In my case the template has an alias ofForm
and my method is:The error message explaining that this was required was in the source of the error page, visible in DevTools.
is working on a reply...