formtools / core

The Form Tools Core.

Home Page:https://formtools.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

When changing a submission, Form Tools ends up in a empty page

joklu opened this issue · comments

commented

When I am in a submission itself, e.g. admin/forms/edit_submission.php?form_id=7&view_id=6&submission_id=119
And then click Update with a change in one of the fields
Form Tools shows an empty page and does not update the submission. The URL in the browser remains the same.
Any idea how I can solve this?

Hi @joklu, did it always do this or just recently? A blank page almost always means there's a server-side error and the page can't render. Try this: edit your /global/config.php file and add the following line:

$g_default_error_reporting = 2047;

(Doc on that file here). Then try the action again and see if it outputs any errors to the screen.

commented

Hi Ben, thanks a lot for your prompt answer. Indeed it showed an error and turned out I forgot to install submission_pre_parser module after updating. Working again now, thanks!

Great stuff!