RSS Plugin not working

“Repeat Campaign Every” and “Repeat until” section in Scheduling is not visible after installation. I am unable to finish campaign as it shows error and the value is not filled? How to make it visible and use the plugin?

@vikramasia It is explained in the plugin’s documentation https://resources.phplist.com/plugin/rssfeed

Sir
I have already added define(‘USE_REPETITION’,1);
to config.php.
Still its not visible
Is there any thing else which I have to do?

There can be only one occurrence in your config file. Ensure that you do not have another define of USE_REPETITION prior to that one.

Thank you sir, the problem is solved and the options are now visible.

Sir I need your help in setting cron job for feed fetch in cpanel.
Its php cgi, so I am unable to use the command which is mentioned in the
document it generates error.

I use the following method to process queue using cron
I created php file with following
$url = “
http://www.completegate.in/lists/admin/?page=processqueue&secret=mysecret”;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
$result = curl_exec($ch);
curl_close($ch);

and then i use cron as
php -f path to above file