mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-02-26 03:27:16 -05:00
- Check on update.freshrss.org for new updates - Download script - Apply script - Need translations and verifications NOTE: current script on server indicates version 0.7.3 is an update of 0.8-dev ==> IT'S ONLY FOR MY TESTS! Script just does a backup of ./data actually... See https://github.com/marienfressinaud/FreshRSS/issues/411
25 lines
836 B
PHP
25 lines
836 B
PHP
<?php
|
|
define('FRESHRSS_VERSION', '0.8-dev');
|
|
define('FRESHRSS_WEBSITE', 'http://freshrss.org');
|
|
define('FRESHRSS_UPDATE_WEBSITE', 'http://update.freshrss.org?v=' . FRESHRSS_VERSION);
|
|
|
|
// PHP text output compression http://php.net/ob_gzhandler (better to do it at Web server level)
|
|
define('PHP_COMPRESSION', false);
|
|
|
|
// Constantes de chemins
|
|
define('FRESHRSS_PATH', dirname(__FILE__));
|
|
|
|
define('PUBLIC_PATH', FRESHRSS_PATH . '/p');
|
|
define('INDEX_PATH', PUBLIC_PATH . '/i');
|
|
define('PUBLIC_RELATIVE', '..');
|
|
|
|
define('DATA_PATH', FRESHRSS_PATH . '/data');
|
|
define('UPDATE_FILENAME', DATA_PATH . '/update.php');
|
|
define('LOG_PATH', DATA_PATH . '/log');
|
|
define('CACHE_PATH', DATA_PATH . '/cache');
|
|
|
|
define('LIB_PATH', FRESHRSS_PATH . '/lib');
|
|
define('APP_PATH', FRESHRSS_PATH . '/app');
|
|
|
|
define('TMP_PATH', sys_get_temp_dir());
|