• canard92

    (@canard92)


    With mailchimp account configured as mentionned on nextscripts help,
    when using either test post ou auto post, the mailchimp campaign is created, but the content is not sent. If got a timeout :
    [Error] [MailChimp - MailChimp #0] - -=ERROR=- WP_Error Object ( [errors] => Array ( [http_request_failed] => Array ( [0] => cURL error 28: Operation timed out after 45000 milliseconds with 677 out of 802 bytes received ) ) [error_data] => Array ( ) ) - ERROR

    But the campaign is successfully created in MC, with recipient and title, but without a content filled “This campaign doesn’t have any content yet.
    Resolve
    ” (step 5 after tracking). When i go in MC console, I am asked to fill it to send the campaign. Maybe a limitation with the free MC account ?

    I tried with a HTML copy of a MC template in the as, for the free account, some mention are mandatory, like the mailchimp image. Same problem.

Viewing 5 replies - 1 through 5 (of 5 total)
  • palier

    (@palier)

    Hello

    I remember having had problems. It might be connected to the length of the content, although I do not know why. I think I’ve had problems with lengthy texts (> 2000 chars).

    dostigator

    (@dostigator)

    Please see the answer in the FAQ – #1.10:
    https://www.nextscripts.com/support-faq/#a110

    Thread Starter canard92

    (@canard92)

    thanks for replying ??

    thanks Palier, I tried short test message to be sure. Nope :(.

    I tried the diagnostic suggested by : wp-admin/options-general.php?page=NextScripts_SNAP.php&do=test
    and had “….HTTPS to NXS – Problem” (others tests are ok)

    Replacing :
    nxs_cURLTest(“https://www.nextscripts.com/”, “HTTPS to NXS”, “Social Networks”);
    by the HTTPS scheme fixed the problem :
    nxs_cURLTest(“https://www.nextscripts.com/”, “HTTPS to NXS”, “Social Networks”);
    All tests are ok.

    With the php code suggested by the error :
    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 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); 
    ?>

    I had :
    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.886072 [namelookup_time] => 0.0001 [connect_time] => 0.136116 [pretransfer_time] => 0.136129 [size_upload] => 0 [size_download] => 0 [speed_download] => 0 [speed_upload] => 0 [download_content_length] => 0 [upload_content_length] => 0 [starttransfer_time] => 0.886033 [redirect_time] => 0 [redirect_url] => https://www.nextscripts.com/ [primary_ip] => 107.178.106.136 [certinfo] => Array ( ) )
    Unfortunatly

    Replacing in HTTPS ( curl_setopt($ch, CURLOPT_URL, “https://www.nextscripts.com/&#8221;); ) is ok : [http_code] => 200 etc…

    Maybe a not activated HTTPS scheme in the plugin call ?

    Plugin Author NextScripts

    (@nextscripts)

    Please ignore this error. We recently switched our site nextscripts.com to https-only mode, so test to https://www.nextscripts.com returns 301- Redirect to https://www.nextscripts.com error. Plugin is still checking old http address. This will be corrected in the next release.

    i am up-to-date with nextscripts (free) 3.7.17 and got the same error today

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Post to mailchimp (free acount) doesn’t add content’ is closed to new replies.