Results 1 to 12 of 12

multi word tags not being re-written correctly

This is a discussion on multi word tags not being re-written correctly within the Troubleshooting forums, part of the vBSEO SEO Plugin category; For some reason, my thread tags (the ones in the tag cloud) are not getting re-written correctly if they are ...

  1. #1
    Senior Member jw00dy's Avatar
    Real Name
    Jonathan
    Join Date
    Dec 2006
    Location
    Tooele, UT
    Posts
    184
    Liked
    0 times

    multi word tags not being re-written correctly

    For some reason, my thread tags (the ones in the tag cloud) are not getting re-written correctly if they are more than 1 word long.

    for example.

    the tag: evs rc-evolution review

    Should be rewritten like this.

    /tags/evs+rc-evolution+review/

    but for some reason it doesn't have the + for the space, but instead has the standard %20 (space) in it's place. like this

    /tags/evs%20rc-evolution%20review/

    I've looked through the settings and I don't find anywhere to turn this on or off, so I'm stumped as to why it's not working.

    Anyone have any idea why this might be happening? And it's happening on both my vbSEO optimized forums.
    allthingsmoto.com & bodynspirit.net vBSEO Optimized

  2. #2
    Senior Member
    Real Name
    Michael Biddle
    Join Date
    Jan 2007
    Location
    Southern California
    Posts
    7,097
    Liked
    5 times
    Hello, what version of vBSEO are you running?
    The Forum Hosting - Forum Hosting from the Forum Experts

  3. #3
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul, Turkey, Turkey
    Posts
    23,111
    Liked
    622 times
    Blog Entries
    4
    Hello
    With vBSEO 3.3.0 tag seperator has been changed from + to space. They are semantically both similar tags.
    Mert Gökçeimam / Crawlability Inc.

    vBSEO 3.6.0 Alpha Önizlemesi - Including Like Tree
    Unveiling the NEW vBSEO Sitemap Generator 3.0 - available NOW for vBSEO Customers!


    Twitter:@Depkac
    Personal Blog : Mert Gökçeimam

  4. #4
    Senior Member jw00dy's Avatar
    Real Name
    Jonathan
    Join Date
    Dec 2006
    Location
    Tooele, UT
    Posts
    184
    Liked
    0 times
    They are both on 3.3.0.

    Is there a way to choose/specify which ones is used? I don't like the %20 for spaces. I already have some of the indexed with + and some with %20 -- I would prefer to stick with what I've been using since I'm already battling some sort of penalty from google.
    allthingsmoto.com & bodynspirit.net vBSEO Optimized

  5. #5
    Senior Member jw00dy's Avatar
    Real Name
    Jonathan
    Join Date
    Dec 2006
    Location
    Tooele, UT
    Posts
    184
    Liked
    0 times
    Is their a way to change it back to + instead of a space (%20)?
    allthingsmoto.com & bodynspirit.net vBSEO Optimized

  6. #6
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul, Turkey, Turkey
    Posts
    23,111
    Liked
    622 times
    Blog Entries
    4
    Please try enabling tag filter option within config_vbseo.php

    PHP Code:
        define('VBSEO_URL_TAGS_FILTER',        0); 
    Mert Gökçeimam / Crawlability Inc.

    vBSEO 3.6.0 Alpha Önizlemesi - Including Like Tree
    Unveiling the NEW vBSEO Sitemap Generator 3.0 - available NOW for vBSEO Customers!


    Twitter:@Depkac
    Personal Blog : Mert Gökçeimam

  7. #7
    Senior Member jw00dy's Avatar
    Real Name
    Jonathan
    Join Date
    Dec 2006
    Location
    Tooele, UT
    Posts
    184
    Liked
    0 times
    I changed that to a 1 and now it's not using spaces, which is good, but it's using a dash (-) and not a plus (+). I personally don't care, but I'm a bit concerned about google not liking the change.

    Edit: I looked at the headers and they are automatically being 301 redirected to the - version. Both the space and the plus. So that's good.

    I am not aware of the ramifications of using a +, but I know the - is good as far as google is concerned.

    After getting kicked in the crotch by Google, I've become a little nervous about anything I see that might not be working quite right.

    Thanks again for your help.
    allthingsmoto.com & bodynspirit.net vBSEO Optimized

  8. #8
    Senior Member jw00dy's Avatar
    Real Name
    Jonathan
    Join Date
    Dec 2006
    Location
    Tooele, UT
    Posts
    184
    Liked
    0 times
    Just as an FYI, now that the multi word tags uses a - instead of a + any tag with a hyphen in the word, e.g., 2-stroke, how-to etc, do not work.

    The url shows as /forums/tags/2-stroke/ but it returns a 404 page.

    I had to find and rename all tags with a hyphen in them to have no hyphen, e.g., 2 stroke, how to, etc.

    The url is the same /forums/tags/2-stroke/ but now it works.

    So basically you can not hyphenate a tag if you want it to work.
    allthingsmoto.com & bodynspirit.net vBSEO Optimized

  9. #9
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul, Turkey, Turkey
    Posts
    23,111
    Liked
    622 times
    Blog Entries
    4
    Hello Jonathan ,

    In order to have + back within your tag seperator you can uncomment the following line within functions_vbseo_createurl.php

    Find
    PHP Code:
    $tag str_replace('+''%20'$tag); 
    Replace
    PHP Code:
    //$tag = str_replace('+', '%20', $tag); 
    Mert Gökçeimam / Crawlability Inc.

    vBSEO 3.6.0 Alpha Önizlemesi - Including Like Tree
    Unveiling the NEW vBSEO Sitemap Generator 3.0 - available NOW for vBSEO Customers!


    Twitter:@Depkac
    Personal Blog : Mert Gökçeimam

  10. #10
    Senior Member jw00dy's Avatar
    Real Name
    Jonathan
    Join Date
    Dec 2006
    Location
    Tooele, UT
    Posts
    184
    Liked
    0 times
    I'm not necessarily wanting to use the +, I just wanted to let you know I had trouble with the dash/hyphen.

    Sorry, I don't think that came across as clearly as I wanted it to.
    allthingsmoto.com & bodynspirit.net vBSEO Optimized

  11. #11
    Member
    Real Name
    Mick Knutson
    Join Date
    Sep 2008
    Posts
    32
    Liked
    0 times
    Quote Originally Posted by jw00dy View Post
    I'm not necessarily wanting to use the +, I just wanted to let you know I had trouble with the dash/hyphen.

    Sorry, I don't think that came across as clearly as I wanted it to.
    What issues do you have with the dashes then?

    I have 3 word tags that display fine:
    BASE Jumping:: BLiNC Magazine Forums - Threads Tagged with first jump course

  12. #12
    Member
    Real Name
    Mick Knutson
    Join Date
    Sep 2008
    Posts
    32
    Liked
    0 times
    Is this change going to be reflected in my sitemap generator?

Similar Threads

  1. Images being re-written
    By GdDog in forum URL Rewrite Settings
    Replies: 2
    Last Post: 09-04-2008, 10:54 AM
  2. New forums taking forever to be re-written
    By sovaward in forum Troubleshooting
    Replies: 6
    Last Post: 06-02-2008, 02:05 AM
  3. Replies: 13
    Last Post: 01-17-2007, 06:16 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •