• Default avatar
    redhot    
     13 years ago
    0

    Hi

    I have a site which basically only uses Lyften bloggie and I have installed xmap and the LyftenBloggie xmap plugin.

    When I activate it I get the following error in the sitemap section of the webmaster tools.

    Invalid tag value
    This XML tag has an invalid value. Please fix it and resubmit.

    Parent tag: url
    Tag: changefreq
    Value: 0.5
    Problem detected on: Aug 16, 2010

    Can anyone help with a solution.

    Regards John
  • Default avatar
    redhot    
     13 years ago
    0

    Sorry forgot to include the URL of the sitemap

    http://www.supaswap-music.com/index.php/component/option,com_xmap/lang,en/sitemap,1/view,xml/
  • Default avatar
    redhot    
     13 years ago
    0

    I have narrowed the problem down to categories. If I switch them off it solves the problem. The problem is on line 43 of the page.


    http://www.supaswap-music.com/index.php/music-news.html
    2010-08-16T15:16:42Z
    0.5
    0.5

  • Your avatar
    seyi    
     13 years ago
    0

    hi, i took a look at the link and i dont see any errors. maybe i dont understand the problem, can you re-explain?
  • Default avatar
    redhot    
     13 years ago
    0

    It seems to be setting the category changefreq to 0.5 instead of daily
  • Your avatar
    seyi    
     13 years ago
    0

    ah yes, that is a problem. i found the error. you will need access to the files to make the change. i will update the extension also

    within www/administrator/components/com_xmap/extensions/com_lyftenbloggie.php, on line 185, which should read:
    <?php
    $node
    ->changefreq $params['category_priority'];
    ?>


    change it to this:
    <?php
    $node
    ->changefreq $params['category_changefreq'];
    ?>


    that should fix the problem
  • Default avatar
    redhot    
     13 years ago
    0

    That worked, thank you very much