Tagged Questions
A site map (or sitemap) is a list of pages of a web site accessible to crawlers and users.
13
votes
5answers
3k views
Google sitemap files for Rails projects
Is there an easy way to create a sitemaps file for Rails projects? Especially for dynamic sites (such as Stack Overflow for example) there should be a way to dynamically create a sitemaps file. What ...
11
votes
2answers
405 views
Sitemap randomly breaks over time
I've been having some production runtime errors that I don't fully understand. This has happened to us on a couple different ASP.NET 4.0 Web Sites (shudders - yes, I know - we're porting it to MVC but ...
11
votes
2answers
392 views
How do you notify Google through code that there is a updated sitemap?
On this page of Google help:
https://www.google.com/webmasters/tools/docs/en/sitemap-generator.html#submitting
Google mentions that there is a way to notify them of an updated sitemap using an HTTP ...
8
votes
4answers
428 views
Why use a Google Sitemap?
I've played around with Google Sitemaps on a couple sites. The lastmod, changefreq, and priority parameters are pretty cool in theory. But in practice I haven't seen these parameters affect much.
...
6
votes
2answers
390 views
MVC Sitemap Provider — Maintaining URL parameters in breadcrumb trail
I'm using the MvcSiteMapProvider from http://mvcsitemap.codeplex.com/ to create a breadcrumb trail for my project. I have some URLs that need an ID to be passed to present information for the ...
6
votes
1answer
1k views
Visualizing the SiteMap of a large (page number) website
I'm looking for a tool or service that can spider a web domain with a large number of pages, create a sitemap, and then visualize that map in a way that will help me see, understand and group content ...
6
votes
12answers
2k views
What software exists for creating visual sitemaps?
What software is there for creating visual sitemaps?
I know of Visio, but that's not that intuitive to use, and Omnigraffle, but that's mac only. Is there any other software that is specifically ...
6
votes
3answers
7k views
Using Web.SiteMap with Dynamic URLS (URL Routing)
I would like to match "approximate" matches in Web.SiteMap
The Web.Sitemap static sitemap provider works well, except for one thing. IT'S STATIC!
So, if I would have to have a sitemapnode for each ...
5
votes
6answers
132 views
Validating CSS files
I have a CSS file that has grown over time. Many of the coders have come and gone. The site has changed along the way and some of the code in the CSS is no longer being used. Is there a QUICK way to ...
5
votes
3answers
234 views
how to get google sitelinks on a website
There are a lot of websites that look professional in Google results. Try searching for 'stackoverflow' and you'll see at the top a result with a title, a description and a table of 8 links to ...
5
votes
3answers
760 views
Caching sitemaps in django
I implemented a simple sitemap class using django's default sitemap app. As it was taking a long time to execute, I added manual caching:
class ShortReviewsSitemap(Sitemap):
changefreq = "hourly"
...
5
votes
3answers
567 views
ASP.NET Site Maps
Has anyone got experience creating SQL-based ASP.NET site-map providers?
I've got the default XML web.sitemap file working properly with my Menu and SiteMapPath controls. But I'll need a way for the ...
4
votes
4answers
40 views
How to fetch Title of news Article in GoogleNewsSitemap using kentico CMS
I am using Kentico 5.5R2 for my website, where i want to generate GoogleNewsSitemap. So far my code is able to fetch newarticle url and publication date, but i'm not able to fetch the title of news ...
4
votes
1answer
327 views
Parse XML to UL
I am trying to use JQuery to parse a sitemap.xml to look like this HTML: http://astuteo.com/slickmap/demo/
After working on it for a few hours I decided I really need some help in the right ...
4
votes
3answers
110 views
How do i code my meta data to allow my site when googled to display meta description and links
How do I structure my meta data or site map in a way that when my site is googled the result can be displayed like the image displayed? What is the code that I would need to use to achieve this?
4
votes
2answers
234 views
Should a sitemap have *every* url
I have a site with a huge number (well, thousands or tens of thousands) of dynamic URLs, plus a few static URLs.
In theory, due to some cunning SEO linkage on the homepage, it should be possible for ...
4
votes
5answers
1k views
HTML: How to get my subpages listed on a google search
When you go to Google and perform a search, it will return either one of two type of results:
just the title of your webpage, or
the title of your web-page plus, lists subpages it found on that web ...
4
votes
4answers
2k views
Dynamically changing the title of a SiteMapNode
We have a website that uses a bog-standard default sitemap with security trimming as follows:
<siteMap defaultProvider="default" enabled="true">
<providers>
<add ...
4
votes
2answers
612 views
Should I include paginated results in my sitemap.xml?
I have listing pages that take a page argument on the url like the following:
http://www.domain.com/foo/bar/?page=7
Should I just include the URL without params or should I list all pages in my ...
4
votes
1answer
1k views
Good URL strategy for sitemap and SEO
I run a site where users have their own profile pages. They are also able to post products for sale (that they have made) and write/import blog posts. I am going to be implementing a sitemap and I ...
4
votes
5answers
9k views
Generating a Visual Site Map of an Existing Site
I thought I could easily answer this question by searching the web, but my Google-fu has failed me. So I turn to you, oh mighty stackoverflowers, and beseech you for enlightenment:
What is the ...
3
votes
1answer
401 views
MvcSiteMapProvider — Children of dynamic nodes don't show up in breadcrumbs or sitemap
I am trying to develop of sitemap for my site that maintains URL parameters when it needs to. I'm using MvcSiteMapProvider and trying to use dynamic nodes to preserve the route data for various nodes. ...
3
votes
2answers
330 views
Using htaccess to “fake” an XML file?
Here's the problem I'm trying to solve: I have a dynamic php-driven website that is constantly being updated with new content, and I want my XML sitemap to stay up to date automatically. Two options I ...
3
votes
1answer
421 views
Sitemap / Breadcrumb not showing up with Url routing on default page
I've got my web forms site (4.0) setup with UrlRouting.
My bread crumb appears when I go to
http://Localhost/Home
http://Localhost/List
My main issue is with http://Localhost/
Since it's ...
3
votes
3answers
162 views
Writing a file with UTF8 encoding in PHP
I am writing a function to dynamically generate my sitemap and sitemap index.
According to the docs on sitemap.org, the file should be encoded in UTF-8.
My function for writing the file is a rather ...
3
votes
3answers
645 views
How to efficiently serve massive sitemaps in django
I have a site with about 150K pages in its sitemap. I'm using the sitemap index generator to make the sitemaps, but really, I need a way of caching it, because building the 150 sitemaps of 1,000 links ...
3
votes
1answer
569 views
ASP.Net 4.0 - Response required in SiteMap building?
I'm running into an issue upgrading a project to .Net 4.0...and having trouble finding any reason for the issue (or at least, the change causing it). Given the freshness of 4.0, not a lot of blogs ...
3
votes
5answers
602 views
CakePHP recommendation to iterate a huge table and generate a sitemap?
I'm trying to create an XML sitemap using CakePHP, from a table which has more than 50,000 records at the moment, each record equivalent to a URI in the sitemap. Now the problem I'm facing is CakePHP ...
3
votes
2answers
155 views
Coding concept needed to build a page sitemap
I'm working on a CMS using VB.NET 3.5 and I'm stuck on a concept. I have different modules that do different things like wysiwyg, contact form, image gallery, etc... but one that is becoming a bit of ...
3
votes
4answers
1k views
Liftweb Menu customization
I want to create a menu that looks like:
HOME | FOO | BAR | ABOUT | CONTACT
How might I go about doing this?
Here is what I have tried:
<lift:Menu.builder ul:class="menu" ...
3
votes
2answers
161 views
asp.net sitemap admin seeing what a user sees
I am currently trying to figure out how to best go about implementing an administration side for my application.
I have a user site, where users can log in, customize their profile, submit ...
3
votes
2answers
348 views
A simple Sitemap editor?
I just wonder if there's an easy application that would allow me and others to edit a sitemap for ASP.NET in a more visual way. For me, the XML format isn't difficult to understand but I want someone ...
3
votes
1answer
210 views
Pinging google sitemap after every new article submission?
As you may know, by using the following url, you can 'ping' google to update its record of your sitemap:
http://www.google.com/webmasters/sitemaps/ping?sitemap=URLOFSITEMAP.xml
I made a script to ...
3
votes
4answers
900 views
Sitemap on a highly dynamic website
Should a highly dynamic website that is constantly generating new pages use a sitemap? If so, how does a site like stackoverflow.com go about regenerating a sitemap? It seems like it would be a drain ...
3
votes
1answer
267 views
Is the sitemap.axd accepted by all search engines?
I am currently generating a sitemap file dynamically using a HttpHandler, with a path set to sitemap.axd. This then returns xml content. No one at my office is certain if all search engines accept ...
3
votes
4answers
2k views
how to create google sitemap for mvc site?
I was wondering if anyone has done this yet or has any examples
on how to create a Google Sitemap for an MVC website.
Any help or example would be appreciated.
Im talking about this:
...
3
votes
2answers
412 views
ASP.NET site map configuration error
I have received this error, but don't know what it means:
System.Configuration.ConfigurationErrorsException: Exactly one <siteMapNode> element is required directly inside the ...
3
votes
1answer
578 views
Is there any way to use XmlSiteMapProvider within WinForm/Console/VSTest application?
I wonder whether there is a workaround for using the standard XmlSiteMapProvider within a non asp.net application, like WinForm/Console or, in my case, VS Unit Test one.
The following code fails, ...
3
votes
8answers
2k views
What is the Best Way to Populate a Menu Control on a Master Page
Database? Page variables? Enum?????
looking for opionions here.
2
votes
1answer
33 views
PHP - Create xml sitemap that includes dynamic content
Is this possible? I have 4 pages that load dynamically with PHP/AJAX when corresponding menu items are clicked.
What is the best practice for optimizing content loaded dynamically with PHP? I ...
2
votes
1answer
38 views
PHP Mod Rewrite Sitemap Software Not Working
EDIT: Just a quick edit to say that this issue has been sorted out. I just had to use absolute URLs to stop this from happening.
Please bare with me as I'm new to PHP and programming in general, so ...
2
votes
1answer
93 views
Proxy a file from S3 with Heroku and Rails
I need to send a file stored in S3 through my rails application hosted on heroku. I cannot use a redirect to the URL of the file on S3 as I want to send a sitemap which should be served from the same ...
2
votes
1answer
42 views
How to generate the correct sitemap namespace using JAXB and Spring @ResponseBody in controller?
Everything is working fine with the exception that I cannot create the namespace correctly. Any help is much appreciated!
My controller:
@Controller
@RequestMapping("/sitemap")
public class ...
2
votes
3answers
52 views
Creating a directive robots.txt
I have a list of link which I want to get crawled. I would like to all other links the crawler
finds by himself to not be crawled.
Directions I looked into: create a robots.txt which will disallow ...
2
votes
2answers
41 views
Is it necessary to include both html and xml?
I am trying to be as compliant and Search engine satisfying as possible in my practices. Is it necessary to include both html and xml versions of your sitemap? An addition, Im familiar with styling ...
2
votes
1answer
85 views
asp.net sitemap class to use another provider rather than default in web.config
I have this configuration in my web.config.
<siteMap defaultProvider="Provider1" enabled="true">
<providers>
<add name="Provider1" siteMapFile="Web.sitemap" ...
2
votes
3answers
123 views
Sitemap as folder structure
Hey guys,
I'm looking for a way to show a sitemap as a folder structure.
So currently the sitemap looks like this:
http://mydomain.com/
http://mydomain.com/category
...
2
votes
2answers
141 views
Generate sitemap on a website made with WebMatrix + Razor
I need to generate a sitemap to validate the site with Google Webmaster Tool.
How can I generate the sitemap for my website automatically?
2
votes
1answer
225 views
How to read url path form sitemap in ASP.NET Sitemap file?
I have a sitemap file and it is addressed in the web.config sitemap provider. I want to get the get the URLs of the pages included in the sitemap, so that I can process them and index those pages for ...
2
votes
1answer
240 views
Use URL WildCard in web.sitemap?
I have a rewritten URL on my site for search purposes such as:
/Search-Results/Keywords-Here.aspx
/Search-Results/abc.aspx
/Search-Results/Query.aspx
Obviously the different possibilites here are ...