• Resolved donjayeworld

    (@donjayeworld)


    Hello. My Auto poster is not working. It is not giving me any errror it just wont even start the process to post.

    – I have moved my website to a new cloud host and now have HTTPS
    – Same Website
    I did run test and it gave me this:

    Testting… cURL
    Ver: 3.7.16 API: 2.27.3 [ID:17061]

    Deflate – Yes

    –== Test Requested … https://www.nextscripts.com/
    Testing … https://www.nextscripts.com/https://www.nextscripts.com/
    ….HTTPS to NXS – Problem
    Array
    (
    [url] => https://www.nextscripts.com/
    [content_type] => text/html; charset=UTF-8
    [http_code] => 301
    [header_size] => 413
    [request_size] => 180
    [filetime] => -1
    [ssl_verify_result] => 0
    [redirect_count] => 0
    [total_time] => 0.780867
    [namelookup_time] => 0.105043
    [connect_time] => 0.144188
    [pretransfer_time] => 0.144197
    [size_upload] => 0
    [size_download] => 0
    [speed_download] => 0
    [speed_upload] => 0
    [download_content_length] => 0
    [upload_content_length] => 0
    [starttransfer_time] => 0.78081
    [redirect_time] => 0
    [redirect_url] => https://www.nextscripts.com/
    [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/&#8221;);
    curl_setopt($ch, CURLOPT_USERAGENT, “Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.73 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);
    ?>

    PLEASE HELP

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Auto Posting Not working’ is closed to new replies.