Teodor
July 26, 2022, 5:52pm
3
Your local database data is not being transferred on deploy. You need to open the database manager and apply changes after deploying your app/site.
Then you can create a seed and apply it to the remote db to transfer the data.
You learned that trick from me!
With your “Production” target selected (not “Development”) click “Deploy”, and then go the Database manager -> Changes -> Right-click and click “Apply latest changes”. This last step will apply structure changes (“migrations”). Each migration is a (JavaScript) file that details what changes occurred (e.g.: created table xyz, created column abc). Data additions are not part of migrations! A migration only deletes data if you have a drop table or drop column inst…
As for the 500 error:
You can easily debug issues related to server-side processing such as - form not sending email, record not inserting or updating, query not showing data etc.
The first thing you need to do is to open the server connect settings. They are located in the Workflows Panel > Server Actions:
[Screenshot 2021-09-27 at 10.02.35]
And enable the Debug Mode:
[Screenshot 2021-09-27 at 10.03.08]
Click Save:
[Screenshot 2021-09-27 at 10.03.26]
In your browser, open the Developer tools. If you don’t k…
And maybe explain what did you do exactly, and where dis you deploy your app to?