aboutsummaryrefslogtreecommitdiff
path: root/data/config.default.php
AgeCommit message (Collapse)Author
2017-05-12Move default configuration filesGravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/issues/1531
2017-02-23Add config option to disable and hide self-updateGravatar Dennis Schwerdel
2016-12-24Option for cookie durationGravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/issues/1384
2016-11-06Fix small bugs in installGravatar Alexandre Alapetite
Small fixes in install (e.g. better check that DB password works)
2016-10-07Meta description optionGravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/issues/1105
2016-08-07meta referrer originGravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/issues/955 Tested in Firefox 48, Chrome 53, Edge 25
2016-07-31Remove Mozilla Persona loginGravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/issues/1052
2016-05-01Change default feed timeoutGravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/issues/1141
2015-11-02Move auto-update server URL in configurationGravatar Marien Fressinaud
Fix https://github.com/FreshRSS/FreshRSS/issues/1019
2015-10-25Config allow robotsGravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/issues/938
2015-07-23Add pubsubhubbub_enabled to default configurationGravatar Marien Fressinaud
Rename enable_pubsubhubbub into pubsubhubbub_enabled See https://github.com/FreshRSS/FreshRSS/issues/865
2015-07-21Add a max_registrations limitGravatar Marien Fressinaud
- Allow user to create accounts (not implemented) - Admin only can set this limit See https://github.com/FreshRSS/FreshRSS/issues/679
2015-07-17Change default value for db['host'] and ['prefix']Gravatar Marien Fressinaud
See https://github.com/FreshRSS/FreshRSS/issues/890
2015-07-12Syntax error for curl optiona arrayGravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/issues/897
2015-07-12Implement cURL optionsGravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/issues/897 Requires that https://github.com/FreshRSS/FreshRSS/pull/898 is merged first.
2015-06-05PDO option exampleGravatar Alexandre Alapetite
2015-06-03PDO options for e.g. SSLGravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/issues/868
2015-05-15First draft of PubSubHubbubGravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/issues/312 Requires setting base_url in config.php. Currently using the filesystem (no change to the database)
2015-05-10Moved updated/unread option from global to userGravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/issues/798
2015-05-10Global option to mark updated articles as unreadGravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/issues/798
2015-05-10Comments in config fileGravatar Alexandre Alapetite
Documentation https://github.com/FreshRSS/FreshRSS/issues/123
2015-03-21SimplePie option to restaure syslog of HTTP requestsGravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/issues/711
2015-01-08Merge branch 'dev' into 252-extensionsGravatar Marien Fressinaud
Conflicts: app/FreshRSS.php app/Models/Configuration.php app/views/index/index.phtml app/views/index/normal.phtml lib/Minz/Configuration.php lib/Minz/Translate.php lib/lib_rss.php
2015-01-06BREAKING FEATURE: Remove general in configGravatar Marien Fressinaud
General attribute has been removed from system config. Now subattributes (e.g. environment, salt, title, etc.) are directly accessible. YOU HAVE TO FIX YOUR ./data/config.php file! - Remove the general array - Values inside this array must be kept - To see what it must look like, please have a look to ./data/config.default.php (but keep your values!!). See https://github.com/FreshRSS/FreshRSS/issues/730
2015-01-05New configuration system (not working yet)Gravatar Marien Fressinaud
- Use only Minz_Configuration - register() method to load a new configuration file - get() to get a configuration - new exceptions related to configuration - fix a list configuration calls to have FRSS working Current problems to resolve: - How to handle configuration param verifications (i.e. check auth_type is a value from none, http_auth, persona or form) - We must use $conf = Minz_Configuration::get('system'); $general_conf = $conf->general; to access global system configuration which is quite annoying. How to change that? See https://github.com/FreshRSS/FreshRSS/issues/730