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
Can't resolve 305 error - 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: Can't resolve 305 error (/showthread.php?tid=25989)



Can't resolve 305 error - xnau - Jun 29th, 2017

I've been running formtools for years, I have a fair amount of experience using the application. I added a new form today, got it initialized, but now I can't get it to submit, keep getting the 305 error. I understand how it happens, but I don't seem to be able to resolve it and successfully submit. It's not saving the initial unfinalized record for some reason.

The form is not a multi page form, so I'm not sure why I'm having the problem at all.

anyone know how to get things working again?


RE: Can't resolve 305 error - alexh - Jun 30th, 2017

Can you post your code?

It sounds like maybe an issue with the redirect to the thank-you page.


RE: Can't resolve 305 error - xnau - Jun 30th, 2017

Thanks, I was able to figure this out...although I don't know why it wasn't writing the initial record.


Code:
<?php
$ft_form_id = 49;
//  validate the form...
if ( isset( $_POST['g-recaptcha-response'] ) ) {
$rules = array(); // validation rules
$rules[] = "required,first_name,Provide a first name.";
$rules[] = "required,last_name,Provide a last name.";
$rules[] = "required,phone,Please provide telephone or Skype contact info.";
$rules[] = "required,email,Provide an email address.";
$rules[] = "valid_email,email,Check the email address; it appears to be mistyped.";
$errors = validate_fields( $_POST, $rules );
// if there are no errors, process the form
if ( empty( $errors ) ) {
  $fields = ft_api_init_form_page( $ft_form_id );
  $params = array(
      "submit_button" => "send",
      "next_page" => "thanks.php",
      "form_data" => $_POST,
      "finalize" => true
  );
  ft_api_process_form( $params );
  $fields = array_merge( $fields, $_SESSION["form_tools_form"] );
} else {
  $fields = array_merge( $fields, $_POST );
}
}


Pretty standard, except I'm using an invisible recaptcha.

SO, to get past the error, I had to insert a blank, unfinalized record into the database, using the same ID as noted in the 305 error message. With that, the form writes the data to that record and it's done. After that, it just worked.


RE: Can't resolve 305 error - alexh - Jun 30th, 2017

That's weird! Glad you got it working. On a side note I'd love a step by step on how you got recaptcha working!