Make Registered Feeds Import time longer?

OakleyForum

Well-known member
Is there any way to change the Registered Feeds import time to longer than 12 hours?

Also is there any way to set the amount of feeds that is imported at one time. i.e 1 feed every 6 hours instead of 5 every 12?

Thanks.
 
The allowed frequency values are hard-coded:

library/XenForo/Model/Feed.php

Code:
	/**
	 * Valid values (seconds) for feed.frequency
	 *
	 * @var array
	 */
	protected static $_frequencyValues = array(
		600, // 10 mins
		1200, // 20 mins
		1800, // 30 mins
		3600, // 1 hour
		7200, // 2 hours
		14400, // 4 hours
		21600, // 6 hours
		43200, // 12 hours
	);
 
Top Bottom