Hello I have more than 1250 pages, usually site map generator creates only 500 pages Can anybody suggest good site map generator?
what sort of website are you trying to run a sitemap on? if it's a blog or forum script, you can usually find mods to do this
if you want, you can use php - xml sitemap that build by yourself. you can search the script for generating php - xml sitemap in google. it can automatically update your sitemap when you post an article to your database. I use php - xml - mysql for my 2500 pages. and it works. google indexed 2250 of 2500 pages. you can search its tutorials in google with keyword "generate php xml sitemap" here is the simple script of mine.. the name of sitemap file is "sitemap.php" . <?php header('Content-Type: application/xml'); echo '<?xml version="1.0" encoding="UTF-8"?>'."\n"; $mysql_username = "xxxxxxxx"; $mysql_userpass = "xxxxxxx"; $mysql_db = "xxxxxxx"; mysql_connect("localhost", $mysql_username, $mysql_userpass) or die(mysql_error()); mysql_select_db($mysql_db) or die(mysql_error()); ?> <urlset xmlns="http://www.google.com/schemas/sitemap/0.84"> SELECT DATA FROM DATABASE ( I selected data from my database that contain link information ) LOOP IT{ <url> <loc>$sitemap</loc> <lastmod>$datetime</lastmod> <changefreq>daily</changefreq> <priority>0.8</priority> </url> } </urlset> Code (markup): it generated 2500 sitemap url with one click. and it automatically add url each time I post article to my database.. hope it help..
http://www.patlat.org/seo-webmaster/164-seo-scriptler-seo-tools-pack.html download "seo scripts pack" there are some sitemap generator scripts in this pack
You can try mine at http://www.webrickco.com/buildsitemap.php. It is free, and can handle up to 10000 links, with a large range of specific parameters. Just a warning. if priority is all the same, just don't put it. it's an optional parameter. Use <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">