Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author NextScripts

    (@nextscripts)

    Your issue has nothing to do with the plugin itself.

    WP Cron is not working on your site. All you need to do is to setup your WP Cron correctly.
    https://www.nextscripts.com/tutorials/wp-cron-scheduling-tasks-in-wordpress/

    We told you to do that probably 5 times, here on the forums and in your tickets. Until you set it right it will not work. It’s in the plugin’s description.

    Thread Starter wowpress

    (@wowpress)

    Do not be fooled please.
    Support theme: https://www.ads-software.com/support/topic/do-not-autopost-by-cron/
    Ticket number NXS394565

    I wrote that I have no problem with cron, because I use own dedicated server, always use linux crontab service and have more than 1 wordpress (and another CMS) sites and plugins using cron. Problem exist only with your plugin!

    I researched the problem and it’s in the option “Limit autoposting speed”. I sent you all logs but you ignored this and 2 times wrote to update the plugin and then you silent quite. Super tips and support!

    Ticket details:
    I: Hello.
    You said me create a ticket. My problem – https://www.ads-software.com/support/topic/do-not-autopost-by-cron/
    Problem remained ??
    Which technical details do you need?

    You: Hi Maxlubimov,
    Thank you for your interest to our products.
    Please update to the latest version 4.0.6. This problem has been fixed there.
    Please let me know if you have any questions.
    Ludwig Van Normainen
    NextScripts.com

    I: Unfortunately not.
    Unhealthy cron error not showing, but posts in social networks do not create.
    Log: https://pastebin.com/fNmLEntW
    Query: https://pastebin.com/nWVYCxuZ
    Settings: https://prntscr.com/h2abyl

    You: Hi Maxlubimov,
    Thank you for your interest to our products.
    Please update to the latest version 4.0.7. This problem has been fixed there.
    Please let me know if you have any questions.
    Ludwig Van Normainen
    NextScripts.com

    I: Are you kidding me? Great tips! I know about updates and it’s not helpful. I don’t know what to do with it. Version 3.8 somehow worked.

    I: Maybe it’is because I create posts in pending status then they move to scheduled status and then publish? Test it.

    I: It’s not to post only if checked option “Limit autopost speed”. If I uncheck this posting is work, but I need this option because make many posts per hour.

    I: Where are you?

    fkone

    (@fkone)

    This is true, the autoposting is not respected. I also wrote to the developer about this but nothing has been done. Finally what I did was to add the limit myself in my theme in functions.php. For me it would autopost every 90 seconds no matter the value I was putting. Here is my code if it can help you

    ** this code is for snap v3, I didn’t update to v4, I am waiting for more positive reviews **

    // Modify SNAP reposter cron schedule to two hours, it is hardcoded to 90 sec
    add_filter( ‘cron_schedules’, ‘example_add_cron_interval’ );
    function example_add_cron_interval( $schedules ){
    if(isset($schedules[‘nxsreposter’])){
    $schedules[‘nxsreposter’][‘interval’] = 2*60*60; // in seconds
    }
    return $schedules;
    }

    fkone

    (@fkone)

    Maybe the developer can confirm if it will work for v4. If not I will post here the code for v4 if it is different when I update

    Thread Starter wowpress

    (@wowpress)

    Thank you man, I will try your solution tomorrow. otherwise I already despaired. It seems that Developer don’t want work and to fix bug with posting limitation…

    Thread Starter wowpress

    (@wowpress)

    Unfortunately no results. If I use your solution in functions.php and uncheck option “Limit autoposting speed” all my posts starts to posting in social networks, more than 20 per hour…

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Don’t autopost with option “Limit autoposting speed”’ is closed to new replies.