Home User profile
tagDiv Member
This user did not write anything. So we are just showing here some random text to make the profile page look nice :)
ThibaultVauquelin
tagDiv Member

For those who encounter this bug despite of a well configured theme and server, you can circumvent it by increasing the timeout of the get_all request sent by your server to the cloud API.

It does the trick for me to increase it from 12 seconds to 90 seconds. It seems that my hosting provider’s servers maybe busy some times and need more time to get responses from the API.

To increase this timeout, edit those files :


//file path 'www/wp-content/plugins/td-cloud-library/tdb_ajax.php'
//line 557
$api_response = wp_remote_post($api_url . '/' . $cloud_end_point, array (
'method' => 'POST',
'body' => $cloud_post,
'timeout' => 12 //INCREASE THIS
));

// file path 'www/wp-content/td-composer/tdb_ajax.php'
//line 210

$api_response = wp_remote_post($api_url . '/' . $cloud_end_point, array (
'method' => 'POST',
'body' => $cloud_post,
'timeout' => 12 //INCREASE THIS
));

For me, 90s is enough to make it works properly, even when my hosting provider’s connectivity is overloaded.

Viewing 1 post (of 1 total)