Unable to find the Field with the GUID 84a17cf8... (Umbraco Forms)
Hello! I was recently put in charge of our Umbraco forms and am very new to Umbraco and noticed we had some default fieldtypes missing we need. I have since re-added the missing partial FieldType.FileUpload.cshtml and included it in web.csproj. Upon pushing these changes to our dev environment/database everything works fine on our dev website. But when running umbraco locally connected to dev database through IIS EXPRESS in vscode I get
Exception Details: Umbraco.Forms.Core.Exceptions.ProviderException: Unable to find the Field with the GUID 84a17cf8-b711-46a6-9840-0e4a072ad000
Line 49: Html.RenderAction("RenderForm", "UmbracoForms", new {formId = form, recordId = recordGuid, theme = theme, includeScripts = includeScripts });
I'm not sure if forms still store the form data in json files, if so you need to copy the files from the server to be able to render the forms locally.
I think the path is something like AppData/UmbracoForms/ or AppPlugins/UmbracoForms/Data if it is a really old instance.
Check this link https://issues.umbraco.org/issue/CON-1115
Thank you! Yes, I managed to get it to work by simply running the solution in visual studio which upgraded necessary web.dll/ lib.dll files locally :)!
Unable to find the Field with the GUID 84a17cf8... (Umbraco Forms)
Hello! I was recently put in charge of our Umbraco forms and am very new to Umbraco and noticed we had some default fieldtypes missing we need. I have since re-added the missing partial FieldType.FileUpload.cshtml and included it in web.csproj. Upon pushing these changes to our dev environment/database everything works fine on our dev website. But when running umbraco locally connected to dev database through IIS EXPRESS in vscode I get
Exception Details: Umbraco.Forms.Core.Exceptions.ProviderException: Unable to find the Field with the GUID 84a17cf8-b711-46a6-9840-0e4a072ad000
Line 49: Html.RenderAction("RenderForm", "UmbracoForms", new {formId = form, recordId = recordGuid, theme = theme, includeScripts = includeScripts });
Source File: c:\Users\XXX\XXX\web-cms\Web\Views\MacroPartials\InsertUmbracoFormWithTheme.cshtml Line: 49
What's going on here? :)
Hi Dinitown
I'm not sure if forms still store the form data in json files, if so you need to copy the files from the server to be able to render the forms locally. I think the path is something like AppData/UmbracoForms/ or AppPlugins/UmbracoForms/Data if it is a really old instance. Check this link https://issues.umbraco.org/issue/CON-1115
Best regards Frank
Thank you! Yes, I managed to get it to work by simply running the solution in visual studio which upgraded necessary web.dll/ lib.dll files locally :)!
is working on a reply...