<?php
if(strcmp(basename($_SERVER['PHP_SELF']),basename(__FILE__)) === 0)
{
exit('Forbidden!');
}
$host = 'localhost'; // Most likely is localhost
$dbname = ''; // The name of the database
$user = ''; // MySQL username
$dbpassword = ''; // MySQL password
// Database tables.
$prefix = 'no404s';
// Language File
$lang_file = 'lang_en_linkchecker.php';
// Configurations (look at readme.txt)
// How many seconds do you want No404s to try checking the links?
$howfast = 5;
// How many bytes into the webpage do you want No404s to look?
$howlook = 100;
// Do you want to get the title? Set to 1 if you want the title.
$gettitle = 1;
// How many days do you want links to remain in the database?
$days = 31;
// If you want only links from the domain or subdomain you enter into the form set to 1
$siteself = 0;
// The number of links you want checked per page
$number = 25;
?>