After installing the extension for Magento 1, you need to set up the Cron Settings for Magento in case it is not there, so that it enables the set of actions to take place after a particular time interval.
Various Magento features need at least one Cron job to schedule the activities in future. Some of those activities are:
How to do that?
To create a cron job as the user who runs Apache, the following commands in the order shown:
crontab -u apache-user-name -e
* * * * * /bin/sh /[your Magento install dir]/cron.sh
For example, for CentOS,
* * * * * /bin/sh /var/www/html/magento/cron.sh
To know more about it in detail, click here and go through the complete guide to set up Cron Jobs for Magento 1.