de94f7312d
* gzip encoding * simplified configuration * various fixes
8 lines
269 B
PHP
8 lines
269 B
PHP
<?php
|
|
// The file to which we should store the data
|
|
define('DATA_FILE', 'data');
|
|
// The base URL with which you will access the script. Keep the trailing slash.
|
|
define('BASE_URL', 'http://your.domain.tld/');
|
|
// Max number of URLs to keep
|
|
define('MAX_SAVED_URLS', 100);
|