New features
Version 3.x > New features > Web Analytics - Invalid Pages View modes: 
User avatar
Member
Member
Darren - 10/30/2008 12:33:21 PM
   
Web Analytics - Invalid Pages
In the invalid pages section of the web analytics module I have a list of invalid page links. But as I have several websites adding up to 100's of pages I have no idea where these invalid links are to locate and correct them. I have to try and guess and search through numerous pages to find them, sometimes without success.

What would be nice is if the module would provide the page on which the invalid link resides. Would this be feasible at all?

User avatar
Kentico Developer
Kentico Developer
kentico_helenag - 10/31/2008 7:37:04 AM
   
RE:Web Analytics - Invalid Pages
Hi Darren,

we would like to add this feature and hope it could be already in the 3.2 version! There would be included the information where the visitors come to invalid page from.

Best regards,
Helena Grulichova

User avatar
Member
Member
Mufasa - 1/19/2009 4:15:55 PM
   
RE:Web Analytics - Invalid Pages
+1 for this one. I would be happy with just the HTTP "Referrer" field to be included somewhere with the invalid page error... That way it would cover Kentico links and links from external sources coming in. (Of course, pointing to the page as seen by the Content tree (TreeNode) path and not seeing CMSPages/GetFile.aspx? links would be nice too!)

User avatar
Kentico Developer
Kentico Developer
kentico_helenag - 1/26/2009 7:13:34 AM
   
RE:Web Analytics - Invalid Pages
Hello,

thank you for your note. The ‘Referrer’ field will be included in the next version.

The note with the links – I think you mean the difference between permanent URLs and non-permanent ones. Please see here for more information about this topic: http://devnet.kentico.com/docs/devguide/linking_pages_and_files.htm

Best regards,
Helena Grulichova

User avatar
Kentico Developer
Kentico Developer
kentico_helenag - 1/27/2009 4:07:43 AM
   
RE:Web Analytics - Invalid Pages
Hello,

Meantime (before the next version), you could develop such functionality by yourself. The information about custom web analytics reports is here: http://devnet.kentico.com/docs/devguide/creating_custom_reports.htm

You could log the event in the Global.asax.cs file (in the App_code folder). There is a line about 540:
'HitLogProvider.LogHit(HitLogProvider.PAGE_NOT_FOUND, siteName, CMSContext.PreferredCultureCode, url, 0);'

You could add the referral URL like this:
Uri referrer = HttpContext.Current.Request.UrlReferrer;
string referral = UrlHelper.RemoveQuery(referrer.AbsoluteUri);

Then you could for example change the mentioned hit log like this:

HitLogProvider.LogHit(HitLogProvider.PAGE_NOT_FOUND, siteName, CMSContext.PreferredCultureCode, url + " (" + referral + ")", 0);

Best regards,
Helena Grulichova

User avatar
Member
Member
ankprasanna-ipeindia - 6/5/2009 2:13:46 AM
   
Web Analytics - Feature
Hello,
I am using Kentico CMS 3.1a Free Edition for our organization website. Can we use Web Analytics features in Free Edition or not.

User avatar
Kentico Developer
Kentico Developer
kentico_ondrejv - 6/5/2009 6:44:26 AM
   
RE:Web Analytics - Feature
Hello,

unfortunately it's not possible with Free Edition. As you can see here: http://www.kentico.com/cms-asp-net-features/Feature-Matrix.aspx you can use Web Analytics since Enterprise edition.

Best regards
Ondrej Vasil

User avatar
Member
Member
ankprasanna-ipeindia - 6/27/2009 4:54:37 AM
   
RE:Web Analytics - Feature
Hello,
I gone through feature matrix where comparision of editions are available. Infact, we an educational institution implementing kentico cms website. Can you specify any alternative for webanalytics so that we can find no.of downloads for application links & brochures etc.

User avatar
Kentico Support
Kentico Support
kentico_jurajo - 6/30/2009 8:24:42 AM
   
RE:Web Analytics - Feature
Hi,

You can use Google Analytics from Google web master tools.

Best Regards,
Juraj Ondrus