Welcome to MobyThreads.com!
FAQFAQ      ProfileProfile    Private MessagesPrivate Messages   Log inLog in
All support for the MobyThreads Threaded phpBB MOD can now be found on welsolutions at this forum

seeking sitemap help

 
   Web Hosting and Web Master Forums (Home) -> Webmaster RSS
Next:  Apache virtual host directives Vs mod rewrites  
Author Message
vendorsequipmentinc

External


Since: Dec 07, 2006
Posts: 2



(Msg. 1) Posted: Thu Dec 07, 2006 1:38 pm
Post subject: seeking sitemap help
Archived from groups: alt>www>webmaster (more info?)

please help me a rookie get a working sitemap setup for my site.

www.vendorsequipment.com

thanks alot.

 >> Stay informed about: seeking sitemap help 
Back to top
Login to vote
Oreste

External


Since: Dec 07, 2006
Posts: 3



(Msg. 2) Posted: Thu Dec 07, 2006 5:07 pm
Post subject: Re: seeking sitemap help [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

vendorsequipmentinc wrote:
> please help me a rookie get a working sitemap setup for my site.
> www.vendorsequipment.com
> thanks alot.

what exactly do you need?

 >> Stay informed about: seeking sitemap help 
Back to top
Login to vote
vendorsequipmentinc

External


Since: Dec 07, 2006
Posts: 2



(Msg. 3) Posted: Fri Dec 08, 2006 5:54 am
Post subject: Re: seeking sitemap help [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

well, i've tried to generate sitemaps in every way form and function
for my site. when the map is generated by software, a ton of the links
do not function. i'm to the point where i'd almost consider just
doiing all of this manually..

in its most basic form, what is the code that needs to be associated
with a sitemap?

i plug all this info into an html software used to run my website. as i
mentioned its an ASP site.

thanks alot for your help.

i just need someone to say to me.. listen, this is what you do for
every single one of your pages, and supply the code.

thanks.
 >> Stay informed about: seeking sitemap help 
Back to top
Login to vote
Oreste

External


Since: Dec 07, 2006
Posts: 3



(Msg. 4) Posted: Fri Dec 08, 2006 9:06 am
Post subject: Re: seeking sitemap help [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

vendorsequipmentinc wrote:
> i just need someone to say to me.. listen, this is what you do for
> every single one of your pages, and supply the code.
> thanks.

You're looking for consultancy, it is not for free.

Try it instead:

http://www.auditmypc.com/site-maps.asp
 >> Stay informed about: seeking sitemap help 
Back to top
Login to vote
Gwin

External


Since: Aug 06, 2006
Posts: 153



(Msg. 5) Posted: Thu Dec 14, 2006 8:30 am
Post subject: Re: seeking sitemap help [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

vendorsequipmentinc wrote:
> well, i've tried to generate sitemaps in every way form and function
> for my site. when the map is generated by software, a ton of the links
> do not function. i'm to the point where i'd almost consider just
> doiing all of this manually..
>
> in its most basic form, what is the code that needs to be associated
> with a sitemap?
>
> i plug all this info into an html software used to run my website. as i
> mentioned its an ASP site.
>
> thanks alot for your help.
>
> i just need someone to say to me.. listen, this is what you do for
> every single one of your pages, and supply the code.
>
> thanks.

listen, this is what you do for every single one of your pages.
code

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.google.com/schemas/sitemap/0.84">
<url>
<loc>http://www.yourdomain.com/</loc>
<lastmod>2006-11-11</lastmod>
<changefreq>weekly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>http://yourdomain.com/index.html</loc>
<lastmod>2006-11-11</lastmod>
<changefreq>weekly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>http://yourdomain.com/page.html</loc>
<lastmod>2006-11-11</lastmod>
<changefreq>weekly</changefreq>
<priority>0.5</priority>
</url>
</urlset>
 >> Stay informed about: seeking sitemap help 
Back to top
Login to vote
spamblocked1

External


Since: Sep 19, 2003
Posts: 3499



(Msg. 6) Posted: Thu Dec 14, 2006 12:54 pm
Post subject: Re: seeking sitemap help [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Fleeing from the madness of the http://groups.google.com jungle
vendorsequipmentinc <jmalagutti.TakeThisOut@aol.com> stumbled into
news:alt.www.webmaster
and said:

> well, i've tried to generate sitemaps in every way form and function
> for my site. when the map is generated by software, a ton of the links
> do not function. i'm to the point where i'd almost consider just
> doiing all of this manually..
>
> in its most basic form, what is the code that needs to be associated
> with a sitemap?

links & descriptions?

> i plug all this info into an html software used to run my website. as i
> mentioned its an ASP site.

Does the file/directory structure have any relationship to the link
structure? If so you could do this in software (server-side)

> thanks alot for your help.
>
> i just need someone to say to me.. listen, this is what you do for
> every single one of your pages, and supply the code.

Have you tried your favourite search engine? there must be tons of apps
kicking around that will query a remote site for interal links.

--
William Tasso

http://williamtasso.com/words/what-is-usenet.asp
 >> Stay informed about: seeking sitemap help 
Back to top
Login to vote
cristina

External


Since: Jul 27, 2006
Posts: 36



(Msg. 7) Posted: Thu Dec 14, 2006 1:55 pm
Post subject: Re: seeking sitemap help [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Gwin wrote:

> listen, this is what you do for every single one of your pages.
> code
>
> <?xml version="1.0" encoding="UTF-8"?>
> <urlset xmlns="http://www.google.com/schemas/sitemap/0.84">
> <url>
> <loc>http://www.yourdomain.com/</loc>
> <lastmod>2006-11-11</lastmod>
> <changefreq>weekly</changefreq>
> <priority>0.5</priority>
> </url>
> <url>
> <loc>http://yourdomain.com/index.html</loc>
> <lastmod>2006-11-11</lastmod>
> <changefreq>weekly</changefreq>
> <priority>0.5</priority>
> </url>
> </urlset>

Just to be absolutely pernickety,
it is better I think not to include in the sitemap a URL like
http://yourdomain.com/index.html
when you include the URL
http://yourdomain.com/
because they point to the same page.

Also, there is a new namespace and header for the sitemap,
see sitemaps.org
and the sitemap now is accepted not only
by Google, but also by Yahoo, and soon presumably by MSN, so
<urlset xmlns="http://www.google.com/schemas/sitemap/0.84">
becomes
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
and you can use the full header if you want
to check the sitemap with XML validators

<?xml version='1.0' encoding='UTF-8'?>
<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
http://www.sitemaps.org/schemas/sitemap/09/sitemap.xsd"
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
 >> Stay informed about: seeking sitemap help 
Back to top
Login to vote
dk_sz

External


Since: Feb 14, 2004
Posts: 23



(Msg. 8) Posted: Sat Dec 16, 2006 8:23 am
Post subject: Re: seeking sitemap help [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

>> well, i've tried to generate sitemaps in every way form and function
>> for my site. when the map is generated by software, a ton of the links
>> do not function. i'm to the point where i'd almost consider just

Provide a link and I will try run
it through my sitemap generator Smile


--
best regards
Thomas Schulz
http://www.micro-sys.dk/products/sitemap-generator/
 >> Stay informed about: seeking sitemap help 
Back to top
Login to vote
Display posts from previous:   
Related Topics:
Need tips for sitemap.htm - I am creating a sitemap webpage of my website (not a xml sitemap for Google Sitemap), and I could need some advice on optimizing it for Google. It is a real site map to be used by visitors, and it will be linked from the top of my page. I would like..

Is the sitemap important for indexing?? - I haven't updated my sitemap file in a while, and was wondering if it is really important. I have a dynamic content site, and though I use modrewrite to create .html links, they are still dynamic. thanks, brian

seeking help for database - Hi. I am seeking help for a database type of thing. I want to list real estate listings and rental properties. I would like to get something that can be made to look like my site using frontpage 2000. I do not know a bunch of html, just the basics, an...

Seeking Help/Advice - Hello everyone! I am looking for someone who can help me with some advice to set-up a social group on-line but am not sure sure what I need eg. database, a forum or WHAT? Also do you know someone - a student or a "computerfreak" who can set th...

seeking web hosting recommendations - If this is not the right group, please direct me to the right one. I need to change my web hosting company. I used DomainNamesGB.com for three years, but ever since they were acquired by Business Serve plc, I've had problems with the email account...
   Web Hosting and Web Master Forums (Home) -> Webmaster All times are: Pacific Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]