After Deployment Form changes are not reflected which saved from localhost
Hello,
I am using Formulate for rendering forms in my application. When I make changes like deleting a field from localhost and deploy it, I don't get the localhost changes reflected on the Published version. I need to make changes after each deployment.
I even checked on the Formulate folder in deployed version but it doesn't include the changes done after deployment.
How can I make sure all my localhost changes are deployed along with other changes which doesn't require to make all those changes again after deployment?
How are you deploying? Are you using something like Git to store your files, and something like TeamCity to deploy them?
Be sure the ~/App_Plugins/formulate/ folder is included in your Git commits and in your deployments.
Note: I wouldn't normally recommend to somebody that they do this, as I consider forms to be content. However, since it seems this is your workflow, this is how you'd go about it.
I have everything proper as you say, ~/App_Data/ is not being ignored while deploying. and I kept it under observation for two days in which I deployed twice and now it has reflected the changes which I made week ago, and the current localhost changes are no where!
Take a look at the recommendation from the above link. It says to try moving the files to a different folder. I think App_Data is one of those folders that gets ignored by default for some systems.
After Deployment Form changes are not reflected which saved from localhost
Hello, I am using Formulate for rendering forms in my application. When I make changes like deleting a field from localhost and deploy it, I don't get the localhost changes reflected on the Published version. I need to make changes after each deployment.
I even checked on the Formulate folder in deployed version but it doesn't include the changes done after deployment. How can I make sure all my localhost changes are deployed along with other changes which doesn't require to make all those changes again after deployment?
Thanks in Advance!
How are you deploying? Are you using something like Git to store your files, and something like TeamCity to deploy them?
Be sure the
~/App_Plugins/formulate/
folder is included in your Git commits and in your deployments.Note: I wouldn't normally recommend to somebody that they do this, as I consider forms to be content. However, since it seems this is your workflow, this is how you'd go about it.
I have Deployed on Azure App service using Visual Studio 2017 as it is .Net Framework 4.8 application.
And Yes, I have included
~/App_Plugins/formulate/
folder in my Git commits and Deployments.Shoot, I meant to say
~/App_Data/formulate/
rather than~/App_Plugins/formulate/
.My guess is
~/App_Data/
is being ignored.See here for more details (including a workaround): https://our.umbraco.com/packages/backoffice-extensions/formulate/formulate-questions/102357-formulate-configuration-being-deleted-when-deploy-to-azure
I have everything proper as you say, ~/App_Data/ is not being ignored while deploying. and I kept it under observation for two days in which I deployed twice and now it has reflected the changes which I made week ago, and the current localhost changes are no where!
Take a look at the recommendation from the above link. It says to try moving the files to a different folder. I think
App_Data
is one of those folders that gets ignored by default for some systems.Moving the files to a new folder has worked for my App. Thanks!
is working on a reply...