solution to those who gets error using umbBlogTagcloud.xslt
For umbraco Version 4.7.1 starter kit blog tag cloud implementation.
If you get "Error parsing XSLT file: \xslt\umbBlogTagcloud.xslt. " while implementing Tag Cloud using BlogTagcloud marco. Please consider the following solution:
Go to developer -> xslt and open umbBlogTagcloud.xslt. Try to save it, if you have this errorSystem.OverflowException: Value was either too large or too small for an Int32.
solution to those who gets error using umbBlogTagcloud.xslt
For umbraco Version 4.7.1 starter kit blog tag cloud implementation.
If you get "Error parsing XSLT file: \xslt\umbBlogTagcloud.xslt. " while implementing Tag Cloud using BlogTagcloud marco. Please consider the following solution:
Go to developer -> xslt and open umbBlogTagcloud.xslt. Try to save it, if you have this errorSystem.OverflowException: Value was either too large or too small for an Int32.
Change
<a href="{umbraco.library:NiceUrl($currentPage/ancestor-or-self::umbBlog/@id)}?filterby={.}">
To
<a href="{umbraco.library:NiceUrl($currentPage/ancestor-or-self::*[@level=1]/umbBlog/@id)}?filterby={.}">
You should be able to successfully save the xslt this time.
Cheers,
is working on a reply...