Y:[2017-08-21 20:57:47] – [E] [A] – -=# ERROR #=- –==## API UPDATE – Connection timed out after 45000 milliseconds ##==–
[2017-08-21 20:56:52] – [E] [A] – -=# ERROR #=- –==## API UPDATE – Connection timed out after 45001 milliseconds ##==–
[2017-08-21 20:55:49] – [E] [A] – -=# ERROR #=- –==## API UPDATE – Connection timed out after 45000 milliseconds ##==–
[2017-08-21 20:55:46] – [E] [A] – -=# ERROR #=- –==## API UPDATE – Operation timed out after 45001 milliseconds with 0 bytes received ##==–
[2017-08-21 20:55:24] – [E] [A] – -=# ERROR #=- –==## API UPDATE – Failed to connect to http://www.nextscripts.com port 80: Connection refused ##==–
[2017-08-21 20:55:24] – [E] [A] – -=# ERROR #=- –==## API UPDATE – Failed to connect to http://www.nextscripts.com port 80: Connection refused ##==–
[2017-08-21 20:55:24] – [E] [A] – -=# ERROR #=- –==## API UPDATE – Failed to connect to http://www.nextscripts.com port 80: Connection refused ##==–
[2017-08-21 20:55:24] – [E] [A] – -=# ERROR #=- –==## API UPDATE – Failed to connect to http://www.nextscripts.com port 80: Connection refused ##==–
[2017-08-21 20:55:23] – [E] [A] – -=# ERROR #=- –==## API UPDATE – Failed to connect to http://www.nextscripts.com port 80: Connection refused ##==–
[2017-08-21 20:55:23] – [E] [A] – -=# ERROR #=- –==## API UPDATE – Failed to connect to http://www.nextscripts.com port 80: Connection refused ##==–
[2017-08-21 20:55:23] – [E] [A] – -=# ERROR #=- –==## API UPDATE – Failed to connect to http://www.nextscripts.com port 80: Connection refused ##==–
[2017-08-21 20:55:22] – [E] [A] – -=# ERROR #=- –==## API UPDATE – Failed to connect to http://www.nextscripts.com port 80: Connection refused ##==–
[2017-08-21 20:55:22] – [E] [A] – -=# ERROR #=- –==## API UPDATE – Recv failure: Connection reset by peer ##==–
[2017-08-21 20:55:22] – [E] [A] – -=# ERROR #=- –==## API UPDATE – Failed to connect to http://www.nextscripts.com port 80: Connection refused ##==–
[2017-08-21 20:55:22] – [E] [A] – -=# ERROR #=- –==## API UPDATE – Empty reply from server ##==–
[2017-08-21 20:51:06] – [E] [A] – -=# ERROR #=- –==## API UPDATE – Connection timed out after 45000 milliseconds ##==–
[2017-08-21 20:50:25] – [E] [A] – -=# ERROR #=- –==## API UPDATE – Connection timed out after 45000 milliseconds ##==–
Why your site is asking for update every several seconds?
Could you please contact support directly. We need to take a look at your environment if that’s possible.
https://www.nextscripts.com/support/
-
This reply was modified 8 years, 8 months ago by
NextScripts.
I use php 7.1.8, and real cron job is called every 9 mins. There was no problem until day. Nothing has been changed in last few days in server side as well as in wordpress.
I just activated the plugin again and deactivated you nx updater 1.4.2, which seems to solve the problem.
If you disable helper you loose “Pro” features.
Please update helper to 1.4.3 and let me know if it solves your issue.
After updating to 1.4.3, I haven’t seen the update notice error until now. It seems to solve the problem.
If I give [Test Connections and HTTPS/SSL] then its showing –
Testting… cURL
Ver: 3.8.7
Deflate – Yes
–== Test Requested … https://www.nextscripts.com/
Testing … https://www.nextscripts.com/ – https://www.nextscripts.com/
….HTTPS to NXS – Problem
Forbidden
You don’t have permission to access /
on this server.
Additionally, a 403 Forbidden
error was encountered while trying to use an ErrorDocument to handle the request.
Array
(
[url] => https://www.nextscripts.com/
[content_type] => text/html; charset=iso-8859-1
[http_code] => 403
[header_size] => 213
[request_size] => 180
[filetime] => -1
[ssl_verify_result] => 0
[redirect_count] => 0
[total_time] => 0.368091
[namelookup_time] => 3.4E-5
[connect_time] => 0.075762
[pretransfer_time] => 0.270388
[size_upload] => 0
[size_download] => 328
[speed_download] => 891
[speed_upload] => 0
[download_content_length] => 328
[upload_content_length] => 0
[starttransfer_time] => 0.368047
[redirect_time] => 0
[redirect_url] =>
[primary_ip] => 107.178.106.136
[certinfo] => Array
(
)
)
There is a problem with cURL. You need to contact your server admin or hosting provider. Here is the PHP code to reproduce the problem:
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, “https://www.nextscripts.com/”);
curl_setopt($ch, CURLOPT_USERAGENT, “Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36”);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 10);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);
$response = curl_exec($ch);
$errmsg = curl_error($ch);
$cInfo = curl_getinfo($ch);
curl_close($ch);
print_r($errmsg);
print_r($cInfo);
print_r($response);
?>