<?php
/**
 * 
 * Crawler Configuration File
 *
 */
 
 /**
  * MySQL Connection Settings
  */
 $mysql_server = 'localhost';
 $mysql_user = '';
 $mysql_pass = '';
 $mysql_db = '';

/**
 * Local Timezone
 */
 $timezone = 'America/New_York';
 
/**
 *
 * Domains to crawl separated by commas.  Crawler will verify that a link resides in one of the domains listed before adding it to the queue.
 *
 * Example:  "www.fcc.gov, broadband.com"
 *
 */
$domains = "www.fcc.gov, auctionbidding.fcc.gov, auctionbidding2.fcc.gov, auctionfiling.fcc.gov, auctionfiling2.fcc.gov, auctionresults.fcc.gov, auctions.fcc.gov, auctions2.fcc.gov, auctionsignon.fcc.gov, auctionsignon2.fcc.gov, dtvsupport.fcc.gov, ecfsdocs.fcc.gov, esupport.fcc.gov, eteam.fcc.gov, fjallfoss.fcc.gov, gis.fcc.gov, hauk.fcc.gov, hraunfoss.fcc.gov, licensing.fcc.gov, publicsafety.fcc.gov, search.fcc.gov, search2.fcc.gov, specialreports.fcc.gov, ulsbatch.fcc.gov, wireless.fcc.gov, wireless2.fcc.gov"; 

/**
 * No Need to Edit below here
 */

 
 /**
 * Check to ensure settings are not defaults
 */

 if ($mysql_server == ''|$mysql_user == ''|$mysql_pass==''|$mysql_db=='') die('You must enter MySQL information in config.php before continuing');
 
 if ($domains == '') die('You must enter one or more domains in config.php before continuing');
 
/**
 * Initiate database connection
 */
$db=mysql_connect ($mysql_server, $mysql_user, $mysql_pass) or die ('I cannot connect to the database because: ' . mysql_error());

/**
 * Select DB
 */
mysql_select_db ($mysql_db);

/**
 * Set the timezone to properly note timestamps
 */
date_default_timezone_set($timezone);



?>