Title: Problems after update
Last modified: March 11, 2022

---

# Problems after update

 *  [Florian](https://wordpress.org/support/users/pictibe/)
 * (@pictibe)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/problems-after-update-49/)
 * Hi,
 * i read something about many problems with the newest contact form 7 versions 
   and we have a problem with a large form since the update like “cURL error 28:
   Operation timed out after 5001 milliseconds with 0 bytes received”.
 * What can we do?
 * Florian

Viewing 3 replies - 1 through 3 (of 3 total)

 *  [sealview](https://wordpress.org/support/users/sealview/)
 * (@sealview)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/problems-after-update-49/#post-15341751)
 * Hi,
    I had the same problem. I found a quick solution. I am not a WP guru, but
   the solution works for me. It seams that with the CF7 5.5.3 the Post’s meta is
   called different, so this is what you have to do to work.
 * Open the plug-in’s folder (wp-content/plugins/cf7-to-api/) go to “include” folder
   and open in editing mode the “class-cf7-api-admin.php”.
    Search for the «wpcf7_integrations»
   function, it should be at line 146 and add in the beginning of the function the
   follow code (right before $wpcf7_[…] declarations):
 *     ```
       $wpcf7 = WPCF7_ContactForm::get_current();
       $form_id = $wpcf7->id();
       ```
   
 * Now you have to change the first 4 declaration from:
 *     ```
       $wpcf7_api_data                = $post->prop( 'wpcf7_api_data' );
       $wpcf7_api_data_map            = $post->prop( 'wpcf7_api_data_map' );
       $wpcf7_api_data_template        = $post->prop( 'template' );
       $wpcf7_api_json_data_template  = $post->prop( 'json_template' );
       ```
   
 * With this:
 *     ```
       $wpcf7_api_data                = get_post_meta($form_id,'_wpcf7_api_data')[0];
       $wpcf7_api_data_map            = get_post_meta($form_id,'_wpcf7_api_data_map')[0];
       $wpcf7_api_data_template        = get_post_meta($form_id,'template'); 
       $wpcf7_api_json_data_template  = get_post_meta($form_id,'json_template');
       ```
   
 * Now it should work fine!
    Hope it helps!
    -  This reply was modified 4 years, 4 months ago by [sealview](https://wordpress.org/support/users/sealview/).
      Reason: more comprehensive
 *  Thread Starter [Florian](https://wordpress.org/support/users/pictibe/)
 * (@pictibe)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/problems-after-update-49/#post-15349807)
 * So it seems the plugin is not supported anymore? The dev of the plugin would 
   sell it…
 *  [malinka76](https://wordpress.org/support/users/malinka76/)
 * (@malinka76)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/problems-after-update-49/#post-15379540)
 * Plugin is working
    Download plugin 1.4.11 [https://wordpress.org/plugins/cf7-to-api-basic-auth/advanced/](https://wordpress.org/plugins/cf7-to-api-basic-auth/advanced/)
   at the bottom of that page.
 * Best regards
    Malinka

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Problems after update’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/cf7-to-api-basic-auth.svg)
 * [Contact form 7 TO API + Basic Auth](https://wordpress.org/plugins/cf7-to-api-basic-auth/)
 * [Support Threads](https://wordpress.org/support/plugin/cf7-to-api-basic-auth/)
 * [Active Topics](https://wordpress.org/support/plugin/cf7-to-api-basic-auth/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/cf7-to-api-basic-auth/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/cf7-to-api-basic-auth/reviews/)

 * 4 replies
 * 8 participants
 * Last reply from: [malinka76](https://wordpress.org/support/users/malinka76/)
 * Last activity: [4 years, 3 months ago](https://wordpress.org/support/topic/problems-after-update-49/#post-15379540)
 * Status: not resolved