如何更改 RSS 导入模块的频率
我想知道是否可行,以及如何将 RSS 导入模块中 Pligg CMS 的频率从几小时更改为几分钟。
- 进给频率(小时):12——检查新项目的频率。
CMS 下载:http://pligg.com/download/。
RSS 模块下载:http://forums.pligg.com/99555-post17.html 。
I wish to find out if it is possible, and how I could change the frequency for the Pligg CMS in the RSS Import module from hours to minutes.
- Feed Frequency (hours): 12 -- how often to check for new items.
CMS Download: http://pligg.com/download/.
RSS Module Download: http://forums.pligg.com/99555-post17.html.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
快速浏览一下,我看到两种可能性:
a)修改源代码。在所有文件中搜索
feed_freq_hours
,将所有出现的位置更改为feed_freq_minutes
,并修复所有引用(例如,代替$feed->feed_freq_hours * 3600
,您必须使用$feed->feed_freq_minutes * 60
)。您还必须重命名[table_prefix]feeds
表的feed_freq_hours
列。祝你好运!b) (ab)使用
feed_freq_hours
通过使用小数小时来每分钟更新频率:例如。要每 10 分钟更新一次,请输入0.1666667
(六分之一小时)。这需要将feed_freq_hours
列从int
更改为float
,例如。更改表 [table_prefix]feeds 更改 feed_freq_hours feed_freq_hours float
。您最好向作者提交功能请求。
on a quick glance, i see 2 possibilities:
a) modify the source. search all files for
feed_freq_hours
, change all occurrences tofeed_freq_minutes
, and fix all references (eg. instead of$feed->feed_freq_hours * 3600
, you will have to use$feed->feed_freq_minutes * 60
). you will also have to rename thefeed_freq_hours
column of the[table_prefix]feeds
table. good luck!b) (ab)use
feed_freq_hours
for minutely update frequencies by using fractional hours: eg. for an update every 10 minutes, enter0.1666667
(a sixth of an hour). this will need a change of thefeed_freq_hours
column fromint
tofloat
, eg.ALTER TABLE [table_prefix]feeds CHANGE feed_freq_hours feed_freq_hours float
.you might be better of submitting a feature request to the author.