Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Eric 8 posts 29 karma points
    Feb 16, 2012 @ 16:11
    Eric
    0

    Error loading uBlogsyListTags

    I was doing a clean up of our tag cloud list - basically deselecting irrelevant tags, then retagging with better keywords.  In doing so, the following error occurred on our blog page where our tag cloud would normally appear: 

    Error loading Razor Script uBlogsyListTags.cshtml 'int' does not contain a definition for 'Split'

    Would anyone know where to begin troubleshooting this?  I'm not sure if this is indicating a problem with a blog post entry, a uBlogsy related file, or our database.

    We are running umbraco v 4.7.1, uBlogsy 1.3.6.1

    Thanks,

    Eric

  • Anthony Dang 1404 posts 2558 karma points MVP 3x c-trib
    Feb 16, 2012 @ 17:59
    Anthony Dang
    0

    Perhaps umbraco is converting a tag to an int

    Find this line: allTags.AddRange(n.uBlogsyPostTags.Split(",".ToCharArray(), StringSplitOptions.RemoveEmptyEntries));

    Should be line 53 of the ListTags file

    Replace uBlogsyPostTags

    with 

    GetProperty("uBlogsyPostTags").Value.ToString()

     

  • Eric 8 posts 29 karma points
    Feb 16, 2012 @ 18:27
    Eric
    0

    Anthony, that fix worked perfectly!  Thank you so much, you saved the day.

    Eric

Please Sign in or register to post replies

Write your reply to:

Draft