sitemap

Google App Engine - SiteMap Creation for a social network

Hi all. I am creating a social tool - I want to allow search engines to pick up "public" user profiles - like twitter and face-book. I have seen all the protocol info at http://www.sitemaps.org and i understand this and how to build such a file - along with an index if i exceed the 50K limit. Where i am struggling is the concept of ho...

What documents/requirements do you need from clients to develop web projects ?

I have an interview coming up where I would be a consultant to a small advertising agency. They crank out web sites for clients using DNN. tTe company owner/ operator asked me what I need in order to run with something and get it done, and eluded to wire frames and a site map. I am more used to having more detailed work and in a full ti...

Change the output of the Html.menu() asp control .

Im creating a asp mvc application and im using a sitemap to create my menu. Is it possible to change the output of the Html.menu() asp control? normal output: <ul> <li><a href="#">Item 1</li> <li><a href="#">Item 2</li> </ul> needed output: <ul> <li><a href="#"><span>Item 1</span></li> <li><a href="#"><span>Item 2<...

How can I use SiteMap more efficiently?

So, in our website we are using SiteMap. For each request we render some menu and to do that we do SiteMap.RootNode in the helper function. Now, when I have done the profiling of my website using dotTrace, I saw the get_RootNode() is taking lot's of time(around 70-75 millisecond). But we know that the SiteMap is static. So, I am thinki...

WebConfigurationManager error after adding siteMap

Hello I'm getting this error: Compiler Error Message: CS0118: 'Configuration' is a 'namespace' but is used like a 'type' Configuration myWebConfig = WebConfigurationManager.OpenWebConfiguration("~/"); This code has been in place for 5+ months without this issues, only today after adding this sitemap code do I have this issue. <siteMap...

Build a Sitemap but webpages don't use links

Folks I am trying to build a sitemap (we need one badly) for a huge multi-page web app. Technically its not much more than a collection of php/MySQL web forms that use javascript instead of traditional linkage to access the many pages. <td width="100" align="center" ONMOUSEOVER="this.className='bgover'" ONMOUSEOUT="this.className='bgou...

Limitation for google sitemap.xml file size

can any one please let me know the memory limitation(MB) of google sitemap.xml file size. ...

Return different siteMapNodes for different roles

I'm using my own SiteMapProvider which is just inherited and little bit rewritten System.Web.XmlSiteMapProvider. I want to return different siteMapNode for clients and for managers. Or maybe the same but with different Title property. Is it possible? If yes, how can I do that? ...

ASP.net menu only show certain nodes in Web.sitemap

Hi, I have a few items apart of my Web.sitemap file that rely on querystring or session variables. I do not want these items to appear in my menu. Is there a way to hide it from the menu, but still be in the sitemap (for sitepath control). Thanks ...

Binding menu items to a sitemap.

Hello all..this is driving me nuts. I have a navigation menu I would like to display based upon user roles (using.net membership) After several hours and headaches (from banging my head against the desk) I was wondering if someone can point me in the error of my ways. Page: <body> <form runat="server"> <div class="page"> ...

Django sitemap intermittent www

The automatic sitemap for my Django site fluctuates between including the www on urls and leaving it out (I'm aiming to have it in all the time). This has ramifications in google not indexing my pages properly so I'm trying to narrow down what would be causing this issue. I have set PREPEND_WWW = True and my site record in the sites fra...

Does Security Trimming work with Web Forms Routing?

In my web.config I have configured a SiteMapProvider with securityTrimmingEnabled="true" and on my main master page is an asp:Menu control bound to an asp:SiteMapDataSource. In addition I have configured restricted access to all pages in a subfolder "Admin" (using another web.config in this subfolder). If I put a sitemapNode in Web.site...

Configuring ASP.NET Site Map URL Domain

I have a site map configured as such: <siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" > <siteMapNode url="www.website.com/index.aspx" title="Site Name" description=""> <siteMapNode url="home.aspx" title="My Home" description="My Home" Group="Active"> <siteMapNode url="Search.aspx" title="Search" de...

dynamically create sitemap xml using php

Hi, I have created sitemap for my site using some reference code in the below link http://stackoverflow.com/questions/2747801/creating-an-xml-sitemap-with-php But I am getting error as XML Parsing Error: undefined entity Location: as my content is as follows << alt >> attribute and it says something like < loc >http://www.example...

Sitemap Encoding Woes

Hi, I'm having real trouble understanding the specification and guidelines on how to properly escape and encode a URL for submission in a sitemap. In the sitemap.org (entity escaping) examples, they have an example URL: http://www.example.com/ümlat.php&amp;q=name Which when UTF-8 encoded ends up as (according to them): http://www.e...

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 any spider to crawl the site and discover all the dynamic urls via a spider-friendly search. Given this, do I really need to worry about e...

static pages in Django sitemap framework

Hello everyone, I have some doubts regarding sitemap.xml generation and Django's sitemap framework particularly. Let's say I have a blog application which has post_detail pages with each post's content and a bunch of 'helper' pages like 'view by tag', 'view by author', etc. Is it mandatory to include each and every page in sitemap....

SiteMap Navigation and Query String

Currently I am trying to figure out how I can add dynamic query string parameters to my sitemap navigation menu. For example, the user chooses the source and edition he wants to work with. I have a simple sitemap that creates navigational links but the parameters the user chose need to be passed in the query string. The default map loo...

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 simplistic one, something along the lines of: function generateFile() { $xml = create_xml(); $fp = @fopen('sitemap', 'w'); fwrite($f...

question about sitemap files and their content for a dynamic website

I am writing a set of functions to generate a sitemap for a website. Lets assume that the website is a blog. The definition of a sitemap is that it lists the pages that are available in a website. For a dynamic website, those pages change quite regularly. Using the example of a blog, the 'pages' will be the blog posts (I'm guessing), s...