X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=inc%2Fpoche%2Fconfig.inc.default.php;h=f666f468eeabc343fad8476707dcd25f9d10e675;hb=6fe9b616aa48c61d1af6d044042c848de1650ecf;hp=0e82f0cd22330ae93ce500c0fbc897018e8864c1;hpb=1d6a9ac25aa0ee1a51b3fcc70bc4247ff14c54e2;p=github%2Fwallabag%2Fwallabag.git diff --git a/inc/poche/config.inc.default.php b/inc/poche/config.inc.default.php index 0e82f0cd..f666f468 100755 --- a/inc/poche/config.inc.default.php +++ b/inc/poche/config.inc.default.php @@ -5,7 +5,7 @@ * @category wallabag * @author Nicolas Lœuillet * @copyright 2013 - * @license http://www.wtfpl.net/ see COPYING file + * @license http://opensource.org/licenses/MIT see COPYING file */ @define ('SALT', ''); # put a strong string here @@ -24,14 +24,20 @@ ################################################################################# # Do not trespass unless you know what you are doing ################################################################################# +// Change this if http is running on nonstandard port - i.e is behind cache proxy +@define ('HTTP_PORT', 80); // Change this if not using the standart port for SSL - i.e you server is behind sslh @define ('SSL_PORT', 443); @define ('MODE_DEMO', FALSE); @define ('DEBUG_POCHE', FALSE); -@define ('DOWNLOAD_PICTURES', FALSE); -@define ('REGENERATE_PICTURES_QUALITY'), 75); + +//default level of error reporting in application. Developers should override it in their config.inc.php: set to E_ALL. +@define ('ERROR_REPORTING', E_ALL & ~E_NOTICE); + +@define ('DOWNLOAD_PICTURES', FALSE); # This can slow down the process of adding articles +@define ('REGENERATE_PICTURES_QUALITY', 75); @define ('CONVERT_LINKS_FOOTNOTES', FALSE); @define ('REVERT_FORCED_PARAGRAPH_ELEMENTS', FALSE); @define ('SHARE_TWITTER', TRUE); @@ -55,7 +61,7 @@ @define ('LOCALE', ROOT . '/locale'); @define ('CACHE', ROOT . '/cache'); -@define ('PAGINATION', '10'); +@define ('PAGINATION', '12'); //limit for download of articles during import @define ('IMPORT_LIMIT', 5);