| :: |
| Author |
Message |
ultimatehandyman PR2

Joined: 15 Mar 2007 Posts: 209
|
Posted: Sat May 05, 2007 11:35 am Post subject: Google sitemap index |
|
|
I currently use gsite crawler to spider my site in order to make the google sitemap. It is currently saved as sitemap.xml
The sitemap for my site has stopped at 40,000 url's and will not increase any more then this and so I am going to create two sitemap.xml files and place them in a sitemap index file like this-
| Code: | <?xml version="1.0" encoding="UTF-8"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<sitemap>
<loc>http://www.example.com/sitemap1.xml.gz</loc>
<lastmod>2004-10-01T18:23:17+00:00</lastmod>
</sitemap>
<sitemap>
<loc>http://www.example.com/sitemap2.xml.gz</loc>
<lastmod>2005-01-01</lastmod>
</sitemap>
</sitemapindex> |
My question is how do I submit this sitemap index?
Do I delete the old sitemap and then resubmit the sitemap index?
Is this safe to do?
Thanks in advance
chez |
|
|
| Back to top |
|
 |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 14279
|
|
| Back to top |
|
 |
ultimatehandyman PR2

Joined: 15 Mar 2007 Posts: 209
|
Posted: Sun May 06, 2007 10:16 am Post subject: Re: Google sitemap index |
|
|
Thanks dcz
I was just a bit concerned and was not sure if deleting the old sitemap first was a good idea! Hopefully I will get around to doing this in the next few days.
I could not find any info on google about how to do this.
Thanks
chez |
|
|
| Back to top |
|
 |
ultimatehandyman PR2

Joined: 15 Mar 2007 Posts: 209
|
Posted: Mon May 07, 2007 6:23 am Post subject: Re: Google sitemap index |
|
|
I generated a new sitemap and gsite crawler automatically generated two sitemaps and a sitemap index. I have ftp'd everything to the server, but when I check the sitemap index file it says that there are 0 sitemaps in the index
Have I screwed it up ?
This is the link to the index-
http://www.ultimatehandyman.co.uk/sitemap-index.xml
I have deleted the old sitemap for the site!
Thanks in advance
chez |
|
|
| Back to top |
|
 |
ultimatehandyman PR2

Joined: 15 Mar 2007 Posts: 209
|
Posted: Mon May 07, 2007 10:46 am Post subject: Re: Google sitemap index |
|
|
I'm not sure why the link above says there are 0 sitemaps in the sitemap index, but google has accepted it
And the number of indexed url's has gone from 40,000 to 49,436  |
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 14279
|
Posted: Mon May 07, 2007 11:14 am Post subject: Re: Google sitemap index |
|
|
Well, I guess it's only because you're attempting to use a sitemap xsl style sheet with a sitemapindex, not using the exact same syntax, because the links really are in it (look up the source code) :
| Code: |
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="gss.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<!--#Generated by SOFTplus GSiteCrawler v1.20 rev. 273 by SOFTplus Entwicklungen GmbH, http://johannesmueller.com/gs/, http://www.softplus.net/ -->
<sitemap><loc>http://www.ultimatehandyman.co.uk/sitemap.xml.gz</loc><lastmod>2007-05-07T05:45:43+00:00</lastmod></sitemap>
<sitemap><loc>http://www.ultimatehandyman.co.uk/sitemap2.xml.gz</loc><lastmod>2007-05-07T05:45:43+00:00</lastmod></sitemap>
</sitemapindex> |
Now, you could install GYM sitemaps, move your sitemap.php file at the domain's root, following the suggestions to do so in the install, and then use the XML plug-in, to integrate your two sitemaps in the same sitemapIndex, and use the same xsl template as per the forum to display both the sitemaindex and the sitemaps.
It's pretty easy to do, and handy to deal with, since you'd be only dealing with a single sitemapindex.
++ |
_________________ Useful links :
SEO Forum || SEO Directory || SEO phpBB || SEO phpBB3 || Search
____________________
Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Référencement phpBB3 || Recherche |
|
| Back to top |
|
 |
ultimatehandyman PR2

Joined: 15 Mar 2007 Posts: 209
|
Posted: Fri May 11, 2007 2:02 pm Post subject: Re: Google sitemap index |
|
|
Does that mean that I can use gsite crawler to creat the sitemap for my main site and ask it not to crawl the forum and then get GYM sitemap to create a map for the forum?
Thanks
chez |
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 14279
|
Posted: Fri May 11, 2007 5:09 pm Post subject: Re: Google sitemap index |
|
|
Exactly, and it's better, because sitemaps will be updated automatically, and they will not list any duplicate.
I know gsite crawler can be set so it will not spider all links, but I often see duplicates entries in sitemaps created with such tools, mostly because it's hard to think about all filters and to checks huge lists.
Among other benefit, you'll have dynamic lastmod time for each item (topics and forums are sorted by last activity) and nice RSS feeds, all with XSL transforming :
http://www.phpbb-seo.com/boards/sitemaps.xml
http://www.phpbb-seo.com/boards/rss.xml
http://www.phpbb-seo.com/boards/rss-l-m.xml
And the module is fast :
| Code: | <!-- URL list generated in 0.29784 s - 17 sql - 202 URLs listed -->
<!-- Output started from cache after 0.00212 s - sql -->
<!-- Output from cache ended up after 0.00384 s - sql --> |
It's already not to bad to build a cached rss feed with 202 items, with filtered and truncated messages, but 3 thousands of a second for this from cache is really good
This mean these RSS feeds are really usable, you can broadcast them without increasing too much the server load.
++ |
_________________ Useful links :
SEO Forum || SEO Directory || SEO phpBB || SEO phpBB3 || Search
____________________
Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Référencement phpBB3 || Recherche |
|
| Back to top |
|
 |
ultimatehandyman PR2

Joined: 15 Mar 2007 Posts: 209
|
Posted: Fri May 11, 2007 5:20 pm Post subject: Re: Google sitemap index |
|
|
That would be great and would save me lots of time
Gsitecrawler has been good, but for some reason it always has en error url on line 240 and everytime I create a sitemap with it I have to delete line 240 or Google rejects it.
It also takes it about 12 hours to crawl my site! |
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 14279
|
|
| Back to top |
|
 |
ultimatehandyman PR2

Joined: 15 Mar 2007 Posts: 209
|
Posted: Wed May 23, 2007 9:01 am Post subject: Re: Google sitemap index |
|
|
I have had a look at the GYM sitemap module, but it looks complicated to me and so I will have to continue using gsitecrawler, until I can either work out how to use it and combine it with Gsitecrawler or get my friend to take a look at it for me.
I have fixed the problem with my desktop computer now and so I can get online more often, but I am busy making some new pages for the site and so I will look at the GYM sitemaps in a few weeks when I have some time to try and understand it properly  |
|
|
| Back to top |
|
 |
|
|