Cannot find config.php.

Please read the readme.html to learn how to install YOURLS

'); } require_once (dirname(__FILE__).'/version.php'); require_once (dirname(__FILE__).'/functions.php'); require_once (dirname(__FILE__).'/functions-baseconvert.php'); require_once (dirname(__FILE__).'/class-mysql.php'); require_once (dirname(__FILE__).'/functions-plugins.php'); // Load auth functions if needed if( yourls_is_private() ) require_once( dirname(__FILE__).'/functions-auth.php' ); // Load template functions if needed if( yourls_has_interface() ) require_once( dirname(__FILE__).'/functions-html.php' ); // Check if config.php was properly updated for 1.4 if( !defined('YOURLS_DB_PREFIX') ) yourls_die('

Your config.php does not contain all the required constant definitions.

Please check config-sample.php and update your config accordingly, there are new stuffs!

'); // Define constants that have not been user defined in config.php if( !defined('YOURLS_ABSPATH') ) define('YOURLS_ABSPATH', str_replace('\\', '/', dirname(dirname(__FILE__))) ); // physical path of YOURLS root if( !defined('YOURLS_DB_TABLE_URL') ) define('YOURLS_DB_TABLE_URL', YOURLS_DB_PREFIX.'url'); // table to store URLs if( !defined('YOURLS_DB_TABLE_OPTIONS') ) define('YOURLS_DB_TABLE_OPTIONS', YOURLS_DB_PREFIX.'options'); // table to store options if( !defined('YOURLS_DB_TABLE_LOG') ) define('YOURLS_DB_TABLE_LOG', YOURLS_DB_PREFIX.'log'); // table to store hits, for stats if( !defined('YOURLS_FLOOD_DELAY_SECONDS') ) define('YOURLS_FLOOD_DELAY_SECONDS', 15 ); // minimum delay in sec before a same IP can add another URL. Note: logged in users are not throttled down. if( !defined('YOURLS_FLOOD_IP_WHITELIST') ) define('YOURLS_FLOOD_IP_WHITELIST', '' ); // comma separated list of IPs that can bypass flood check. if( !defined('YOURLS_COOKIE_LIFE') ) define( 'YOURLS_COOKIE_LIFE', 60*60*24*7 ); // life span of an auth cookie in seconds (60*60*24*7 = 7 days) if( !defined('YOURLS_NONCE_LIFE') ) define( 'YOURLS_NONCE_LIFE', 3600 ); // life span of a nonce in seconds if( !defined('YOURLS_NOSTATS') ) define( 'YOURLS_NOSTATS', false ); // if set to true, disable stat logging (no use for it, too busy servers, ...) if( !defined('YOURLS_ADMIN_SSL') ) define( 'YOURLS_ADMIN_SSL', false ); // if set to true, force https:// in the admin area if( !defined('YOURLS_DEBUG') ) define( 'YOURLS_DEBUG', false ); // if set to true, verbose debug infos. Will break things. Don't enable. // Error reporting if (defined('YOURLS_DEBUG') && YOURLS_DEBUG == true) { error_reporting(E_ALL); } else { error_reporting(E_ERROR | E_PARSE); } // If request for an admin page is http:// and SSL is required, redirect if( yourls_is_admin() && yourls_needs_ssl() && !yourls_is_ssl() ) { if ( 0 === strpos($_SERVER['REQUEST_URI'], 'http') ) { yourls_redirect( preg_replace('|^http://|', 'https://', $_SERVER['REQUEST_URI']) ); exit(); } else { yourls_redirect( 'https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] ); exit(); } } // Create the YOURLS object $ydb that will contain everything we globally need if ( function_exists( 'yourls_db_connect' ) ) { global $ydb; yourls_db_connect(); } // Read options right from start yourls_get_all_options(); // Check if need to redirect to install procedure if( !yourls_is_installed() && ( !defined('YOURLS_INSTALLING') || YOURLS_INSTALLING != true ) ) { yourls_redirect( YOURLS_SITE .'/admin/install.php' ); } // Check if upgrade is needed. // Note: this is bypassable with define('YOURLS_NO_UPGRADE_CHECK', true) // This is also bypassed if YOURLS_INSTALLING if ( ( !defined('YOURLS_NO_UPGRADE_CHECK') || YOURLS_NO_UPGRADE_CHECK != true ) && ( !defined('YOURLS_INSTALLING') || YOURLS_INSTALLING != true ) ) { if ( yourls_upgrade_is_needed() ) { yourls_redirect( YOURLS_SITE .'/admin/upgrade.php' ); } } // Init all plugins yourls_load_plugins(); yourls_do_action( 'plugins_loaded' );