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
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
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
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
The submission could not be updated - 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: The submission could not be updated (/showthread.php?tid=166)



The submission could not be updated - harmony - May 25th, 2009

I'm trying to edit a form submission in the form tools admin area. The form has 18 fields that I've set as (MEDIUMTEXT) fields.

I can enter large amounts of text on the first 9 of these large fields. On the 10th field, I can only enter 738 characters. It seems I can only enter less characters on each successive large field (I haven't checked how many characters exactly). If I try to submit the same amount of characters as the first 9 I get this error:

The submission could not be updated.

Any idea what's going on?


RE: The submission could not be updated - Ben - May 30th, 2009

Neat...!

Well, first off, there's no limitation in the code on the amount of data that can be submitted and processed by Form Tools, so most likely this is a server restriction.

I'd suggest looking at your phpinfo file (to create one, just upload a .php file to your server with this content:

PHP Code:
<?php phpinfo(); ?>

Then look over that file for post_max_size or anything else that looks likely. If you can find something that looks restrictive, fire off an email to your hosting provider to ask if they can increase it.

How much data are you posting, by the way? I think the default max size is like 2MB of info, which is plenty for most cases.

- Ben


RE: The submission could not be updated - harmony - May 30th, 2009

Hi Ben,

It turns out that there's a general 8000k limit per row of data in MySQL (according to mysql). Is that possible?

My form had 18 large fields that were getting completely filled. The form size was large!

So I've had to break the form into pieces. Drat!


RE: The submission could not be updated - Ben - May 31st, 2009

Interesting...! I didn't think of that.

Wow, that's a lot of data per submission. Sorry you had to split up the form, though... what a nuisance!

- Ben