Scheduling & Processing
Start the article generation process manually or view the logs.
Scheduling Settings
Manual Processing
Click the button below to start processing a session. The process will run in the background and respect the "Articles per Session" setting.
Processing Log
Waiting for process to start...
Cron Job Setup
To automate the publishing process, you need to set up a cron job on your server. A cron job is a scheduler that runs commands at specified intervals.
Use the following command in your server's crontab configuration. This command will execute the scheduler script.
* * * * * cd /home/u867370017/domains/calcolatorigratis.com/public_html/seogenerator && /usr/bin/php scheduler.php >> /dev/null 2>&1
You should adjust the schedule (the `* * * * *` part) to match the "Publication Frequency" you set above. For example, to run every 6 hours, you would use `0 */6 * * *`.
Consult your web hosting provider's documentation for specific instructions on how to add a cron job.