11 lines
464 B
PHP
11 lines
464 B
PHP
<?php
|
|
// Configuration
|
|
$database = "db.txt"; //Where's the websites?!
|
|
$maxfinds = "99"; //Maximum amount of hits on the search query.
|
|
$maxpagecrawl = "100"; //Maximum number of pages to crawl per crawl query
|
|
$descfontsize = "14px"; //Description font size of query results.
|
|
$crawl_depth = "4"; // Crawl to second layer of links on each page
|
|
$max_word_search_array = "10"; // Maximum amount of words to search for in a string if exact string isn't found.
|
|
// END
|
|
?>
|