# TT-RSS ## Update daemon `update_daemon2.php --tasks 6` ## Default preferences ### Update interval `update ttrss_prefs set def_value = '60' where pref_name = 'DEFAULT_UPDATE_INTERVAL';` ### Purge old feeds `update ttrss_prefs set def_value = '30' where pref_name = 'PURGE_OLD_DAYS';` ## Plugins https://github.com/hydrian/TTRSS-Auth-LDAP + patch https://github.com/hydrian/TTRSS-Auth-LDAP/pull/40 ## Themes https://github.com/levito/tt-rss-feedly-theme ## Patchfiles ### Disable 15 minute update interval ```php diff --git a/backend.php b/backend.php index 4184e87c8..7835e1519 100644 --- a/backend.php +++ b/backend.php @@ -68,7 +68,7 @@ $update_intervals = array( 0 => __("Default interval"), -1 => __("Disable updates"), - 15 => __("15 minutes"), +// 15 => __("15 minutes"), 30 => __("30 minutes"), 60 => __("Hourly"), 240 => __("4 hours"), @@ -78,7 +78,7 @@ $update_intervals_nodefault = array( -1 => __("Disable updates"), - 15 => __("15 minutes"), +// 15 => __("15 minutes"), 30 => __("30 minutes"), 60 => __("Hourly"), 240 => __("4 hours"), ``` ### Disable password reset ```php diff --git a/include/login_form.php b/include/login_form.php index 91850b768..f50f6faab 100755 --- a/include/login_form.php +++ b/include/login_form.php @@ -121,11 +121,6 @@ onblur="UtilityApp.fetchProfiles()" value=""/> - -
- -
-
```