index.php: group globals by theme, format comments
Signed-off-by: VirtualTam <virtualtam@flibidi.net>
This commit is contained in:
parent
fd006c630b
commit
28bb2b74e3
1 changed files with 99 additions and 33 deletions
132
index.php
132
index.php
|
@ -22,54 +22,120 @@
|
||||||
date_default_timezone_set('UTC');
|
date_default_timezone_set('UTC');
|
||||||
}
|
}
|
||||||
|
|
||||||
// -----------------------------------------------------------------------------------------------
|
/* -----------------------------------------------------------------------------
|
||||||
// Hardcoded parameter (These parameters can be overwritten by editing the file /data/config.php)
|
* Hardcoded parameters
|
||||||
// You should not touch any code below (or at your own risks!)
|
* You should not touch any code below (or at your own risks!)
|
||||||
$GLOBALS['config']['DATADIR'] = 'data'; // Data subdirectory
|
* (These parameters can be overwritten by editing the file /data/config.php)
|
||||||
$GLOBALS['config']['CONFIG_FILE'] = $GLOBALS['config']['DATADIR'].'/config.php'; // Configuration file (user login/password)
|
* -----------------------------------------------------------------------------
|
||||||
$GLOBALS['config']['DATASTORE'] = $GLOBALS['config']['DATADIR'].'/datastore.php'; // Data storage file.
|
*/
|
||||||
$GLOBALS['config']['LINKS_PER_PAGE'] = 20; // Default links per page.
|
|
||||||
$GLOBALS['config']['IPBANS_FILENAME'] = $GLOBALS['config']['DATADIR'].'/ipbans.php'; // File storage for failures and bans.
|
/*
|
||||||
$GLOBALS['config']['BAN_AFTER'] = 4; // Ban IP after this many failures.
|
* Shaarli directories & configuration files
|
||||||
$GLOBALS['config']['BAN_DURATION'] = 1800; // Ban duration for IP address after login failures (in seconds) (1800 sec. = 30 minutes)
|
*/
|
||||||
$GLOBALS['config']['OPEN_SHAARLI'] = false; // If true, anyone can add/edit/delete links without having to login
|
// Data subdirectory
|
||||||
$GLOBALS['config']['HIDE_TIMESTAMPS'] = false; // If true, the moment when links were saved are not shown to users that are not logged in.
|
$GLOBALS['config']['DATADIR'] = 'data';
|
||||||
$GLOBALS['config']['SHOW_ATOM'] = false; // If true, an extra "ATOM feed" button will be displayed in the toolbar
|
|
||||||
$GLOBALS['config']['ENABLE_THUMBNAILS'] = true; // Enable thumbnails in links.
|
// Main configuration file
|
||||||
$GLOBALS['config']['CACHEDIR'] = 'cache'; // Cache directory for thumbnails for SLOW services (like flickr)
|
$GLOBALS['config']['CONFIG_FILE'] = $GLOBALS['config']['DATADIR'].'/config.php';
|
||||||
$GLOBALS['config']['PAGECACHE'] = 'pagecache'; // Page cache directory.
|
|
||||||
$GLOBALS['config']['ENABLE_LOCALCACHE'] = true; // Enable Shaarli to store thumbnail in a local cache. Disable to reduce web space usage.
|
// Link datastore
|
||||||
$GLOBALS['config']['PUBSUBHUB_URL'] = ''; // PubSubHubbub support. Put an empty string to disable, or put your hub url here to enable.
|
$GLOBALS['config']['DATASTORE'] = $GLOBALS['config']['DATADIR'].'/datastore.php';
|
||||||
$GLOBALS['config']['RAINTPL_TMP'] = 'tmp/' ; // Raintpl cache directory (keep the trailing slash!)
|
|
||||||
$GLOBALS['config']['RAINTPL_TPL'] = 'tpl/' ; // Raintpl template directory (keep the trailing slash!)
|
// Banned IPs
|
||||||
$GLOBALS['config']['UPDATECHECK_FILENAME'] = $GLOBALS['config']['DATADIR'].'/lastupdatecheck.txt'; // For updates check of Shaarli.
|
$GLOBALS['config']['IPBANS_FILENAME'] = $GLOBALS['config']['DATADIR'].'/ipbans.php';
|
||||||
$GLOBALS['config']['UPDATECHECK_INTERVAL'] = 86400 ; // Updates check frequency for Shaarli. 86400 seconds=24 hours
|
|
||||||
// Note: You must have publisher.php in the same directory as Shaarli index.php
|
// For updates check of Shaarli
|
||||||
$GLOBALS['config']['ENABLE_RSS_PERMALINKS'] = true; // Enable RSS permalinks by default. This corresponds to the default behavior of shaarli before this was added as an option.
|
$GLOBALS['config']['UPDATECHECK_FILENAME'] = $GLOBALS['config']['DATADIR'].'/lastupdatecheck.txt';
|
||||||
|
|
||||||
|
// RainTPL cache directory (keep the trailing slash!)
|
||||||
|
$GLOBALS['config']['RAINTPL_TMP'] = 'tmp/';
|
||||||
|
// Raintpl template directory (keep the trailing slash!)
|
||||||
|
$GLOBALS['config']['RAINTPL_TPL'] = 'tpl/';
|
||||||
|
|
||||||
|
// Thuumbnail cache directory
|
||||||
|
$GLOBALS['config']['CACHEDIR'] = 'cache';
|
||||||
|
|
||||||
|
// Atom & RSS feed cache directory
|
||||||
|
$GLOBALS['config']['PAGECACHE'] = 'pagecache';
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Global configuration
|
||||||
|
*/
|
||||||
|
// Ban IP after this many failures
|
||||||
|
$GLOBALS['config']['BAN_AFTER'] = 4;
|
||||||
|
// Ban duration for IP address after login failures (in seconds)
|
||||||
|
$GLOBALS['config']['BAN_DURATION'] = 1800;
|
||||||
|
|
||||||
|
// Feed options
|
||||||
|
// Enable RSS permalinks by default.
|
||||||
|
// This corresponds to the default behavior of shaarli before this was added as an option.
|
||||||
|
$GLOBALS['config']['ENABLE_RSS_PERMALINKS'] = true;
|
||||||
|
// If true, an extra "ATOM feed" button will be displayed in the toolbar
|
||||||
|
$GLOBALS['config']['SHOW_ATOM'] = false;
|
||||||
|
|
||||||
|
// Link display options
|
||||||
$GLOBALS['config']['HIDE_PUBLIC_LINKS'] = false;
|
$GLOBALS['config']['HIDE_PUBLIC_LINKS'] = false;
|
||||||
|
$GLOBALS['config']['HIDE_TIMESTAMPS'] = false;
|
||||||
|
$GLOBALS['config']['LINKS_PER_PAGE'] = 20;
|
||||||
|
|
||||||
|
// Open Shaarli (true): anyone can add/edit/delete links without having to login
|
||||||
|
$GLOBALS['config']['OPEN_SHAARLI'] = false;
|
||||||
|
|
||||||
|
// Thumbnails
|
||||||
|
// Display thumbnails in links
|
||||||
|
$GLOBALS['config']['ENABLE_THUMBNAILS'] = true;
|
||||||
|
// Store thumbnails in a local cache
|
||||||
|
$GLOBALS['config']['ENABLE_LOCALCACHE'] = true;
|
||||||
|
|
||||||
|
// Update check frequency for Shaarli. 86400 seconds=24 hours
|
||||||
|
$GLOBALS['config']['UPDATECHECK_INTERVAL'] = 86400 ;
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Plugin configuration
|
||||||
|
*
|
||||||
|
* Warning: order matters!
|
||||||
|
*
|
||||||
|
* These settings may be be overriden in:
|
||||||
|
* - data/config.php
|
||||||
|
* - each plugin's configuration file
|
||||||
|
*/
|
||||||
//$GLOBALS['config']['ENABLED_PLUGINS'] = array(
|
//$GLOBALS['config']['ENABLED_PLUGINS'] = array(
|
||||||
// 'qrcode', 'archiveorg', 'readityourself', 'demo_plugin', 'playvideos',
|
// 'qrcode', 'archiveorg', 'readityourself', 'demo_plugin', 'playvideos',
|
||||||
// 'wallabag', 'markdown', 'addlink_toolbar',
|
// 'wallabag', 'markdown', 'addlink_toolbar',
|
||||||
//);
|
//);
|
||||||
// Warning: order matters.
|
|
||||||
$GLOBALS['config']['ENABLED_PLUGINS'] = array('qrcode');
|
$GLOBALS['config']['ENABLED_PLUGINS'] = array('qrcode');
|
||||||
|
|
||||||
// Default plugins, default config - will be overriden by config.php and then plugin's config.php file.
|
|
||||||
//$GLOBALS['plugins']['WALLABAG_URL'] = 'https://demo.wallabag.org/';
|
//$GLOBALS['plugins']['WALLABAG_URL'] = 'https://demo.wallabag.org/';
|
||||||
// -----------------------------------------------------------------------------------------------
|
|
||||||
|
// PubSubHubbub support. Put an empty string to disable, or put your hub url here to enable.
|
||||||
|
$GLOBALS['config']['PUBSUBHUB_URL'] = '';
|
||||||
|
|
||||||
|
/*
|
||||||
|
* PHP configuration
|
||||||
|
*/
|
||||||
define('shaarli_version', '0.5.4');
|
define('shaarli_version', '0.5.4');
|
||||||
|
|
||||||
// http://server.com/x/shaarli --> /shaarli/
|
// http://server.com/x/shaarli --> /shaarli/
|
||||||
define('WEB_PATH', substr($_SERVER["REQUEST_URI"], 0, 1+strrpos($_SERVER["REQUEST_URI"], '/', 0)));
|
define('WEB_PATH', substr($_SERVER["REQUEST_URI"], 0, 1+strrpos($_SERVER["REQUEST_URI"], '/', 0)));
|
||||||
|
|
||||||
// PHP Settings
|
// High execution time in case of problematic imports/exports.
|
||||||
ini_set('max_input_time','60'); // High execution time in case of problematic imports/exports.
|
ini_set('max_input_time','60');
|
||||||
ini_set('memory_limit', '128M'); // Try to set max upload file size and read (May not work on some hosts).
|
|
||||||
|
// Try to set max upload file size and read
|
||||||
|
ini_set('memory_limit', '128M');
|
||||||
ini_set('post_max_size', '16M');
|
ini_set('post_max_size', '16M');
|
||||||
ini_set('upload_max_filesize', '16M');
|
ini_set('upload_max_filesize', '16M');
|
||||||
error_reporting(E_ALL^E_WARNING); // See all error except warnings.
|
|
||||||
//error_reporting(-1); // See all errors (for debugging only)
|
|
||||||
|
|
||||||
// User configuration
|
// See all error except warnings
|
||||||
|
error_reporting(E_ALL^E_WARNING);
|
||||||
|
// See all errors (for debugging only)
|
||||||
|
//error_reporting(-1);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* User configuration
|
||||||
|
*/
|
||||||
if (is_file($GLOBALS['config']['CONFIG_FILE'])) {
|
if (is_file($GLOBALS['config']['CONFIG_FILE'])) {
|
||||||
require_once $GLOBALS['config']['CONFIG_FILE'];
|
require_once $GLOBALS['config']['CONFIG_FILE'];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue