Frequently Asked Question
How to do the import by a cron?
Last Updated 6 years ago
You can schedule the migration to import the data automatically. For that, you must define a cron task on your WordPress server like:
Each time this process is run, only the new data will be imported. It won't overwrite or duplicate the existing data.
0 0 * * * php /path/to/wp/wp-content/plugins/fg-joomla-to-wordpress-premium/cron_import.php >>/dev/nullThis will run the import process once a day at 0:00. You can off course change the frequency using the cron syntax.
Each time this process is run, only the new data will be imported. It won't overwrite or duplicate the existing data.