Back to Home



<?php
// PHP xml sitemap generator

// smgen script is a xml sitemap generator
//  * it doesn't need databases
//  * fast page fetching using curl-multi
//  * generates sitemaps for google and yahoo
//  * increase your daily visits

$CONFIG["agent"] = "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.9) Gecko/20020513";
$CONFIG["baseurl"] = "http://ilfalcobianco.altervista.org/forum/";
$CONFIG["priority"] = 0.5;
$CONFIG["sitemap_file"] = "sitemap.xml";

require("net.func.php");
require("html.func.php");
require("misc.func.php");
require("spider.func.php");

spider();

?>