mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-02-26 11:38:18 -05:00
Implémente https://github.com/marienfressinaud/FreshRSS/issues/333 /public/ est renommé /p/ /public/index.php est déplacé dans /p/i/index.php Le cookie de session est limité à /p/i/
18 lines
522 B
PHP
18 lines
522 B
PHP
<?php
|
|
define('FRESHRSS_VERSION', '0.7-beta3');
|
|
define('FRESHRSS_WEBSITE', 'http://freshrss.org');
|
|
|
|
// 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('LOG_PATH', DATA_PATH . '/log');
|
|
define('CACHE_PATH', DATA_PATH . '/cache');
|
|
|
|
define('LIB_PATH', FRESHRSS_PATH . '/lib');
|
|
define('APP_PATH', FRESHRSS_PATH . '/app');
|