Viewing 5 replies - 1 through 5 (of 5 total)
  • We’re looking into this for an EasyAzon Pro customer right now will update this thread when we have a resolution in place. Most likely issue is related to your hosting provider blocking remote sources (in this case being Amazon’s product advertise API which is required to make the plugin function).

    Will update this thread when we have nailed down the cause

    Hi,
    I am having the same issue on my blog.
    How is investigation going on?
    If you need help to troubleshoot this issue please email to me.
    Thanks!

    If you can put this code into a .php file (e.g. connecttimeout.php) and upload to wp-content/mu-plugins/ that can help us investigate.

    <?php
    
    function easyazon_http_request_debug() {
        if(isset($_GET['easyazon-http-request-debug'])) {
            $response = wp_remote_get('https://example.com');
    
            echo '<pre>' . esc_html(print_r($response, true)) . '</pre>';
            exit;
        }
    }
    add_action('init', 'easyazon_http_request_debug');

    Then navigate to https://yourblogurl.com/?easyazon-http-request-debug and share that here.

    The most likely issue is that your server is blocking remote requests to Amazon’s Product Advertising API (which the plugin needs to function of course as that’s how we get pricing data etc from Amazon). It’s also likely then that your server would also block other requests as well.

    Hi!
    Thanks for debugging code.
    After i placed code and sent request no errors were showing, then i check EasyAzon plugin again and it works now.
    I don’t get this error anymore and plugin functioning without problem.

    I think the problem with hosting or Amazon API. Both of website hosted on one hosting, but different IP addresses and both of them working with EasyAzon now.

    Glad to hear so.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Error: connect() timed out!’ is closed to new replies.