• Hi, I am testing the FREE version and when I put the 5 keywords to generate the articles they are queued. The Cronjob is configured and works but the articles are not generated. I have the OpenAi API working correctly

Viewing 10 replies - 1 through 10 (of 10 total)
  • Plugin Author senols

    (@senols)

    Hi @juanwp22,

    If they are in the queue and their status is “pending,” it is likely that the cron job is not functioning correctly to process them. Are you able to share some screenshots of your Bulk Editor and Cron Job setup?

    Thread Starter juanwp22

    (@juanwp22)

    Oracle Server. I tried in another server that I have in Cloudways and everything works perfectly but in this one although it says that the Cronjob is ok it would not be working.

    • This reply was modified 1 year, 7 months ago by juanwp22.
    Plugin Author senols

    (@senols)

    It appears that your cron job isn’t executing as expected on your Oracle server.

    Some hosting providers restrict running cron jobs with arguments. If that’s the case for your server, here’s a workaround you can try:

    1. Create a new file named trigger.php
    2. Copy and paste the following code into it:

    <?php
    require __DIR__.'/wp-load.php';
    $wpaicg_cron = \WPAICG\WPAICG_Cron::get_instance();
    $_GET['wpaicg_cron'] = 'yes';
    $wpaicg_cron->wpaicg_cron_job();

    3. Save this trigger.php file in the root directory of your WordPress installation.

    4.Set up a cron job to trigger this PHP file directly.

    Pls try and let me know how it goes.

    By the way what is the name of your hosting provider? Do they have any documentation for running cron job for PHP scripts?

    Thread Starter juanwp22

    (@juanwp22)

    There I created the file you told me but what would be the task for the Cron? I am not an expert. If you can give me the code so I can copy it in my Cron.

    It is one of those Oracle servers that are free for being a student. They are very powerful but somewhat difficult to manage. I manage it with Hestia panel.

    Plugin Author senols

    (@senols)

    Try this, pls double check the path to see if it is correct, I just wrote it looking at your screenshot.

    * * * * * php/home/juan/web/superstatic.org/public_html/trigger.php

    Thread Starter juanwp22

    (@juanwp22)

    It does not work. My Cronjob that works is as follows:

    php -f /home/juan/web/superstatic.org/public_html/cron.php

    So I tried this code

    php -f /home/juan/web/superstatic.org/public_html/trigger.php

    Does not work :S

    Plugin Author senols

    (@senols)

    Could you ask them about the correct method to run a cron job for a PHP script, or if they have any related documentation? Each provider has its own way of handling such tasks, so it would be challenging without that specific knowledge.

    • This reply was modified 1 year, 7 months ago by senols.
    Thread Starter juanwp22

    (@juanwp22)

    Ok I will try to see if Oracle responds or I will have to change server.

    Thread Starter juanwp22

    (@juanwp22)

    Thread Starter juanwp22

    (@juanwp22)

    Any other ideas? It did not work.

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Bulk Editor not working’ is closed to new replies.