如何更改 RSS 导入模块的频率

发布于 2024-10-24 15:51:35 字数 328 浏览 6 评论 0原文

我想知道是否可行,以及如何将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

避讳 2024-10-31 15:51:35

快速浏览一下,我看到两种可能性:

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 to feed_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 the feed_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, enter 0.1666667 (a sixth of an hour). this will need a change of the feed_freq_hours column from int to float, 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文