1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
# Refreshing feeds
To take full advantage of FreshRSS, it needs to retrieve new items from the feeds you have subscribed to. There are several ways to do this:
- [Manual update](#manual-update)
- [Complete update](#complete-update)
- [Partial update](#partial-update)
- [Automatic update with cron](#automatic-update-with-cron)
- [Online cron](#online-cron)
- [For Form Authentication](#for-form-authentication)
- [For HTTP authentication](#for-http-authentication)
- [For No authentication None](#for-no-authentication-none)
- [Feed configuration of “Do not automatically refresh more often than”](#feed-configuration-of-do-not-automatically-refresh-more-often-than)
- [Background](#background)
- [Default value](#default-value)
- [Individual feed configuration](#individual-feed-configuration)
## Manual update
If you can’t or don’t want to use the automatic method, you can update manually. There are two methods for updating all or some of the feeds.
### Complete update
This update occurs on all feeds. To trigger it, simply click on the update link in the navigation menu.

When the update starts, a progress bar appears and changes while feeds are processed.

### Partial update
This update occurs on the selected feed only. To trigger it, simply click on the update link in the feed menu.

## Automatic update with cron
This is the recommended method.
This method is only available if you have access to the scheduled tasks of the machine on which your FreshRSS instance is installed.
The script is named *actualize_script.php* and is located in the *app* folder. The scheduled task syntax will not be explained here. However, here is [a quick introduction to crontab](http://www.adminschoice.com/crontab-quick-reference/) that might help you.
Here is an example to trigger article update every hour.
```cron
0 * * * * php /path/to/FreshRSS/app/actualize_script.php > /tmp/FreshRSS.log 2>&1
```
## Online cron
If you do not have access to the installation server scheduled task, you can still automate the update process.
To do so, you need to create a scheduled task, which need to call a specific URL:
<https://freshrss.example.net/i/?c=feed&a=actualize> (it could be different depending on your installation). Depending on your application authentication method, you need to adapt the scheduled task.
Special parameters to configure the script - all parameters can be combined:
- Parameter `ajax`
<https://freshrss.example.net/i/?c=feed&a=actualize&ajax=1>
Only a status site is returned and not a complete website. Example: "OK"
- Parameter `maxFeeds`
<https://freshrss.example.net/i/?c=feed&a=actualize&maxFeeds=30>
If *maxFeeds* is set the configured amount of feeds is refreshed at once. The default setting is `10`.
- Parameter `token`
<https://freshrss.example.net/i/?c=feed&a=actualize&token=542345872345734>
Security parameter to prevent unauthorized refreshes. For detailed Documentation see "Form authentication".
### For Form Authentication
If your FreshRSS instance is using Form Authentication, you can configure an authentication token to grant access to the online cron.

You can target a specific user by adding their username to the query string, with `&user=insert-username`:
The scheduled task syntax should look as follows:
<https://freshrss.example.net/i/?c=feed&a=actualize&maxFeeds=10&ajax=1&user=someone&token=my-token>
Alternatively, but not recommended, if you configure the application to allow anonymous reading, you can also allow anonymous users to update feeds (“Allow anonymous refresh of the articles”), and that does not require a token.

### For HTTP authentication
If your FreshRSS instance is using HTTP authentication, you’ll need to provide your credentials to the scheduled task.
**Note:** This method is discouraged as your credentials are stored in plain text.
```cron
0 * * * * curl -u alice:password123 'https://freshrss.example.net/i/?c=feed&a=actualize&maxFeeds=10&ajax=1&user=alice'
```
On some systems, that syntax might also work:
<https://alice:password123@freshrss.example.net/i/?c=feed&a=actualize&maxFeeds=10&ajax=1&user=alice>
### For No authentication (None)
If your FreshRSS instance uses no authentication (public instance, default user):
<https://freshrss.example.net/i/?c=feed&a=actualize&maxFeeds=10&ajax=1>
## Feed configuration of “Do not automatically refresh more often than”
### Background
FreshRSS does not, by design, supports pull refreshes at frequencies higher than once every 15 minutes. But FreshRSS supports [instant push (WebSub)](WebSub.md).
FreshRSS is part of an RSS ecosystem. A typical reaction that we have seen from several servers is to simply ban by, IP, user-agent, or to remove their RSS feed altogether. Bad user behaviours affect the larger community.
### Default value
The default value of “Do not automatically refresh more often than” is set in Configuration -> Archiving.
The lowest global/default purposely cannot be set faster than every 20 minutes, to avoid wasting resources and make sure the RSS ecosystem remains sane.
### Individual feed configuration
Under the settings for individual feeds, you can go down to 15min.
---
Read more:
- [Normal, Global and Reader view](./03_Main_view.md)
- [Filter the feeds and search](./10_filter.md)
|