summaryrefslogtreecommitdiff
path: root/config.php-dist
AgeCommit message (Collapse)Author
2021-02-23add some ;sAndrew Dolgov
2021-02-23cleanup config.php-distAndrew Dolgov
2021-02-22update config.php-distAndrew Dolgov
2021-02-22migrate the rest into Config::Andrew Dolgov
2021-02-12drop ENABLE_GZIP_OUTPUT; system prefs: load php info only if neededAndrew Dolgov
2021-02-12RIP self-registrationAndrew Dolgov
2020-12-11- move sphinx plugin to a separate repoAndrew Dolgov
- regenerate config checks without sphinx-related variables
2020-09-17replace some plain http links with httpsAndrew Dolgov
2020-04-21More fixes when installer generates config file.JustAMacUser
* Use single quotes in config.php when when defining database values so PHP doesn't interpret `$` as a variable (mostly for the password constant). * Use `addcslashes` instead of `addslashes` and only escape backslash and single quotes. * Do not convert DB_PORT to integer if leaving it blank (the default).
2020-04-18Escape user-defined values during installation.JustAMacUser
2019-04-26update description of SELF_URL_PATHAndrew Dolgov
2018-11-22mention mailer_smtp plugin in config.php-distAndrew Dolgov
2018-11-22remove PHPMailer and related directives from config.php-dist; add pluggable ↵Andrew Dolgov
Mailer class
2018-08-13remove more mcrypt stuff from config.php-distAndrew Dolgov
2018-08-13remove FEED_CRYPT_KEY and everything related to itAndrew Dolgov
always assume auth_pass_encrypted is false
2017-07-17update description for LOG_DESTINATIONAndrew Dolgov
2017-05-16remove pubsubhubbub: deadAndrew Dolgov
2017-01-07deprecate encrypted feed passwords because mcrypt is getting removed from ↵Andrew Dolgov
php 7.1 1. transparent decryption for existing installs stays for the time being 2. new passwords are not going to be encrypted even if FEED_CRYPT_KEY is defined 3. added update.php --decrypt-feeds to bulk decrypt existing encrypted passwords 4. updated install to not auto-generate crypt key 5. added warning to config.php-dist
2015-08-21remove SESSION_CHECK_ADDRESSAndrew Dolgov
2015-06-19move language detection to a plugin, remove config.php constantAndrew Dolgov
2015-02-03add config option CHECK_FOR_UPDATESAndrew Dolgov
2015-01-31remove obsolete code related to version checking and tarball updater pluginAndrew Dolgov
2014-04-23mention config.php settings in search_sphinx plugin descriptionAndrew Dolgov
2014-04-23Make search mechanism pluggableRob Hoelz
Currently, TinyTinyRSS can use raw SQL or the Sphinx search engine for searching. It would be nice if other search engines (such as Xapian) could be used, or if features of the underlying SQL engine (such as MySQL's FULLTEXT indexes) could be leveraged. This commit makes searching into a plugin hook, falling back to the builtin behavior if no search plugin is active. The Sphinx search behavior has been broken out into a plugin.
2014-03-11set detect language to off by defaultAndrew Dolgov
2013-12-18config: remove closing php tagAndrew Dolgov
2013-09-27make language detection optional (closes #779)Andrew Dolgov
2013-07-14config.php-dist: fix lines which were too longAndrew Dolgov
2013-07-14fix typo in config.php-distAndrew Dolgov
2013-07-13Change default SELF_URL_PATH for RFC 2602Frederik Holden
2013-05-26Changes to support a new version of the phpmailer. Adds a new setting ↵justauser
SMTP_SECURE, which cna have a value of tls, ssl or be empty. This is used for secure SMTP servers. Also added the ability to have multiple email addresses in the to field. Addresses are separated by semicolons (;)
2013-05-22update sphinx index option descriptionAndrew Dolgov
2013-05-16config: expand description of PHP_EXECUTABLEAndrew Dolgov
2013-04-29do not use session cookie lifetime for additional cookiesAndrew Dolgov
2013-04-23only show reset password link when auth_internal is enabled (refs #681)Andrew Dolgov
2013-04-19make logging configurable; add logging to syslogAndrew Dolgov
2013-04-18actually check for DB_PORT in installer, add better hints and use mysqli if ↵Andrew Dolgov
available
2013-04-17config: remove mention of encrypted loginsAndrew Dolgov
2013-04-17Fix indentation issues (spaces => tabs)Jeffrey Tolar
2013-04-16ttrssMailer: fix typoAndrew Dolgov
2013-04-16add SPHINX_SERVERAndrew Dolgov
2013-04-16unify SMTP_HOST and SMTP_PORT as SMTP_SERVERAndrew Dolgov
2013-04-13implement basic feed authentication parameter encryption in the database ↵Andrew Dolgov
(FEED_CRYPT_KEY)
2013-04-07clarify single user mode descriptionAndrew Dolgov
2013-04-06Fix typo in config.phpArthaey Angosii
Looks like a typo of "vary" instead of "wary", and "aware" sounds better.
2013-04-07remove auth_remote from default configurationAndrew Dolgov
2013-04-04reduce default session expiration limitAndrew Dolgov
2013-03-28enable updater by defaultAndrew Dolgov
2013-03-28remove SESSION_EXPIRE_TIMEAndrew Dolgov
2013-03-28reimplement remember_meAndrew Dolgov