The following warnings occurred:
Warning [2] Undefined array key "avatartype" - Line: 783 - File: global.php PHP 8.1.31 (Linux)
File Line Function
/global.php 783 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined array key "avatartype" - Line: 783 - File: global.php PHP 8.1.31 (Linux)
File Line Function
/global.php 783 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined variable $newpmmsg - Line: 40 - File: global.php(841) : eval()'d code PHP 8.1.31 (Linux)
File Line Function
/global.php(841) : eval()'d code 40 errorHandler->error
/global.php 841 eval
/printthread.php 16 require_once
Warning [2] Undefined array key "style" - Line: 909 - File: global.php PHP 8.1.31 (Linux)
File Line Function
/global.php 909 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined property: MyLanguage::$lang_select_default - Line: 5024 - File: inc/functions.php PHP 8.1.31 (Linux)
File Line Function
/inc/functions.php 5024 errorHandler->error
/global.php 909 build_theme_select
/printthread.php 16 require_once
Warning [2] Undefined array key "additionalgroups" - Line: 7162 - File: inc/functions.php PHP 8.1.31 (Linux)
File Line Function
/inc/functions.php 7162 errorHandler->error
/inc/functions.php 5044 is_member
/global.php 909 build_theme_select
/printthread.php 16 require_once
Warning [2] Undefined array key 1 - Line: 1415 - File: inc/functions.php PHP 8.1.31 (Linux)
File Line Function
/inc/functions.php 1415 errorHandler->error
/inc/functions.php 1370 fetch_forum_permissions
/printthread.php 76 forum_permissions
Warning [2] Undefined array key "showimages" - Line: 160 - File: printthread.php PHP 8.1.31 (Linux)
File Line Function
/printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: printthread.php PHP 8.1.31 (Linux)
File Line Function
/printthread.php 165 errorHandler->error



Form Tools
Blank Screen When Selecting Update on Edit Submission - Printable Version

+- Form Tools (https://forums.formtools.org)
+-- Forum: Form Tools (https://forums.formtools.org/forumdisplay.php?fid=1)
+--- Forum: General Discussion (https://forums.formtools.org/forumdisplay.php?fid=5)
+--- Thread: Blank Screen When Selecting Update on Edit Submission (/showthread.php?tid=5259)



Blank Screen When Selecting Update on Edit Submission - mwdcmatt - Jul 29th, 2015

Hey there,

When I try to edit any of my submissions and select the update button at the bottom of the form, instead of being directed back to the form with the updated information I am given a blank screen.

If I go back to the form itself manually I can see the information has indeed been updated.

Prior to this it would always automatically redirect you back to the form with the new data.

I have ran system check and found no errors.
Also, whenever I login the page will direct be to index.php and it will be a blank page. Only when I highlight the URL and hit enter will I be logged in.

PS - This only became a problem after I rebooted my server. I have another web service running on the same server using a different framework and it's experiencing no problems.

Any help at all would be tremendously appreciated.

Edit: I've found a similar post on the forum here http://forums.formtools.org/showthread.php?tid=743&highlight=error+log but their problem only effected clients. Both Clients and Administrators are effected by the issues in my environment. I also cleared out /themes/classicgrey/cache with no luck. I also replaced formtools with a backup from a few days ago (known working) with no changes.

Edit2: I was able to temporarily resolve the issue by commenting out this line of code on the edit_submission.php file found both in clients/forms/ and admin/forms list($g_success, $g_message) = ft_update_submission($form_id, $submission_id, $request);
I am still unsure of the why behind it though.

Edit3: commenting out that line made it appear as if the information was submitted but after going back into the form, anything that I had thought was submitted was actually nulled out. Maybe this has something to do with the MYSQL database?

Edit4: I believe I found a working solution! I had to add the following PHP code to the edit_submission.php file for both the client and the admin.

header("location: $g_root_url/admin/forms/edit_submission.php?form_id=$form_id&view_id=$view_id&submission_id=$submission_id");
exit;

The above code is for the edit_submission.php file under admin/forms/ if you need to change the client file you'll need to change the url from /admin/forms/edit_submission.php to /clients/forms/edit_submission.php

I haven't had a whole lot of time to go through the code but this seems to be working. It's uploading data to the MYSQL database and it's also redirecting the user back to appropriate form with the newly populated data.

If anyone sees any problems with this, has any recommendations or anything then please let me know.

Thanks