zaus / forms-3rdparty-dynamicfields

Wordpress Plugin -- Provides some dynamic field values via placeholder to [Forms 3rdparty Integration](https://github.com/zaus/forms-3rdparty-integration)
3 stars 1 forks source link

cURL error 28 #11

Closed jacobmedley closed 7 years ago

jacobmedley commented 7 years ago

We are using 3rd Party Integration with GravityForms. Most of the time it works fine, but we occasionally get an error “cURL error 28” (raw response below). I searched the forum for this error but did not find anything and made inquires to GF and our Server Support Team.

What other avenues can I explore to resolve this?

Array ( [safe_message] => error object [object] => WP_Error Object ( [errors] => Array ( [http_request_failed] => Array ( [0] => cURL error 28: Operation timed out after 30001 milliseconds with 0 bytes received ) ) [error_data] => Array ( ) ) )

zaus commented 7 years ago

It's a server issue -- my plugin is reporting that after sending the GF submission to your 3rdparty endpoint (presumably the "server" we're talking about) that server is taking too long to accept whatever you sent. As you indicated, it happens occasionally which is probably to be expected (as computers are sometimes slow for various reasons, high traffic, time of day conflicting with update tasks, etc). Since it only happens occasionally I wouldn't think it'd be a firewall issue (or it would happen all the time). Most likely it's occurring during a database backup or server maintenance window, which causes everything to slow down.

You could:

jacobmedley commented 7 years ago

Thank You.