I have a master/detail where detail is an update form which should also handle an upload. The form will update when I put file upload server action after server action database update. I get several errors like
Please check the exact error returned as explained here: Debugging Problems
The javascript errors won’t help, you should see the exact response from the server (please check the link) for this error 500.
The first error is with bootstrap. In one of the dropdown menus you use the href="http://example.com, change this to # and the error should go away.
Setting a value of a file input is not possible due to security reasons in your browser.
The last error is located in your update action, one of the values (probably the file upload) you try to store in the database is of the incorrect type. Probably an incorrect expression used.
Update server action: verslagupdate
Globals > Post > jaar = tekst, titel = tekst, bestand = file
Steps:
Step: database connection = ofswf
Step File upload: name = upload1, upload fields = {{$_POST.bestand}}, path=/uploadbestand. Create path = checked
Step Database update: name= update1, update options: jaar and titel are texttype with associated $_POST, bestand = tekst, value {{$_POST.bestand}}, condition {{_POST.bestand.name}}
Thanks Teodor. Will try to remember that. Can you explain why I get the form fields checked green?
I have some another page that is supposed to show notification on success, but instead it also show these green checks.