1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

More than 500 pages

Discussion in 'Google Sitemaps' started by davrrash, Dec 17, 2008.

  1. #1
    Hello

    I have more than 1250 pages, usually site map generator creates only 500 pages

    Can anybody suggest good site map generator?
     
    davrrash, Dec 17, 2008 IP
  2. websitetools

    websitetools Well-Known Member

    Messages:
    1,513
    Likes Received:
    25
    Best Answers:
    4
    Trophy Points:
    170
    #2
    You might want to check A1 Sitemap Generator. There's a free trial and it can handle 100.000+ URLs.
     
    websitetools, Dec 19, 2008 IP
  3. davrrash

    davrrash Banned

    Messages:
    142
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Any other sitemap generators?
     
    davrrash, Dec 20, 2008 IP
  4. stangparts

    stangparts Member

    Messages:
    128
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    33
    #4
    try gsitecrawler I think it will go 1,000+ and it's free
     
    stangparts, Dec 20, 2008 IP
  5. davrrash

    davrrash Banned

    Messages:
    142
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Can i create 2 sitemaps and submit them?
     
    davrrash, Dec 20, 2008 IP
  6. Jalpari

    Jalpari Notable Member

    Messages:
    5,640
    Likes Received:
    137
    Best Answers:
    0
    Trophy Points:
    260
    #6
    download gsitecrawler.com software its good and can generate more than 500 pages
     
    Jalpari, Dec 21, 2008 IP
  7. Brandon Sheley

    Brandon Sheley Illustrious Member

    Messages:
    9,721
    Likes Received:
    612
    Best Answers:
    2
    Trophy Points:
    420
    #7
    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 :)
     
    Brandon Sheley, Dec 21, 2008 IP
  8. SEOjumper

    SEOjumper Peon

    Messages:
    29
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #8
    You can create your own XML sitemap, if you are a begginer programer. It's quite easy actually.
     
    SEOjumper, Dec 22, 2008 IP
  9. billy_the_sound

    billy_the_sound Member

    Messages:
    28
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    36
    #9
    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..
     
    billy_the_sound, Dec 23, 2008 IP
  10. antiseptic

    antiseptic Peon

    Messages:
    11
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #10
    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

    [​IMG]
     
    antiseptic, Dec 27, 2008 IP
  11. gbh1935

    gbh1935 Peon

    Messages:
    585
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    0
    #11
    Don't you get an error about all the pages having the same priority?
     
    gbh1935, Dec 27, 2008 IP
  12. JNRCORPS

    JNRCORPS Peon

    Messages:
    1,258
    Likes Received:
    33
    Best Answers:
    0
    Trophy Points:
    0
    #12
    gsitecrawler is a good one ;)
     
    JNRCORPS, Dec 28, 2008 IP
  13. bass

    bass Active Member

    Messages:
    738
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    53
    #13
    thank you very much...
     
    bass, Dec 28, 2008 IP
  14. webrickco

    webrickco Active Member

    Messages:
    268
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    60
    #14
    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">
     
    webrickco, Jan 2, 2009 IP
  15. minhdai

    minhdai Peon

    Messages:
    54
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #15
    try google own sitemap
     
    minhdai, Jan 19, 2009 IP