Viewing 1 replies (of 1 total)
  • Salesforce updated the requirements for TLS. I was having this issue and went into the code and had it spit out the salesforce request. What comes back is not an error in the traditional sense so the way this plugin is coded you get no error but if you spit out the request it will tell you that TLS 1.1 or higher is required.

    If this turns out to be your issue you’ll have to update openSSL on the server.

    To see if this is your issue find the following lines in salesforce.php

    $result = wp_remote_post( $url, $args );

    // Test broken submit
    //$result = new WP_Error( ‘broke’, __( “I’ve fallen and can’t get up”, “my_textdomain” ) );

    Add print_r($result); above “// Test broken submit”

    So now it looks like:

    $result = wp_remote_post( $url, $args );
    print_r($result);
    // Test broken submit
    //$result = new WP_Error( ‘broke’, __( “I’ve fallen and can’t get up”, “my_textdomain” ) );

    Submit a form that is having issues. It should tell you your error. At least it did for me.

    Be sure to delete “print_r($result);” after your test.

    • This reply was modified 8 years, 6 months ago by kgrondell.
Viewing 1 replies (of 1 total)
  • The topic ‘Form successfully submitted but not stored in Salesforce’ is closed to new replies.