Page 2 of 2 FirstFirst 1 2
Results 16 to 25 of 25

Can I SEO forum links, and is it worth risking my 615k pages in Google?

This is a discussion on Can I SEO forum links, and is it worth risking my 615k pages in Google? within the Pre-Sales Questions forums, part of the Announcements & Pre-Sales category; personally..... unless you have major major bandwidth restrictions, I would not worry about usign another style. Remember that googlebot will ...

  1. #16
    rob
    rob is offline
    Senior Member Array rob's Avatar
    Real Name
    Rob
    Join Date
    Oct 2005
    Location
    Eastbourne, UK
    Posts
    982
    Liked
    2 times
    personally..... unless you have major major bandwidth restrictions, I would not worry about usign another style. Remember that googlebot will not load up images, javascripts and CSS.

    I too have a shed load of forums, and every single one is indexed.

    Here's the deal,

    Buy vBseo, install and configure it (or I can do it for a small charge) and if after 4 weeks, you are not 100% delighted with the results, then you can ask for your money back.

    (Can a vBseo Team member back this up??)
    Rob - SEO Specialist

  2. #17
    vBSEO Staff Array Juan Muriente's Avatar
    Real Name
    Juan Carlos Muriente
    Join Date
    Jun 2005
    Location
    Puerto Rico
    Posts
    14,277
    Liked
    612 times
    Quote Originally Posted by rob
    Here's the deal,

    Buy vBseo, install and configure it (or I can do it for a small charge) and if after 4 weeks, you are not 100% delighted with the results, then you can ask for your money back.

    (Can a vBseo Team member back this up??)
    That's a good idea and certainly we'll look at ways to incorporate some sort of warranty or even a free trial. However, this is something that needs to be explored/analyzed further. On the other hand, we do intend to introduce a vBSEO certified consultant program in combination with the affiliate program shortly. This will be both, a good business opportunity for SEO consultants and very beneficial for end users looking for SEO services

    Juan
    Juan Muriente / Crawlability Inc.
    Security bulletin - Patch Level for all supported versions released

    Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!


  3. #18
    rob
    rob is offline
    Senior Member Array rob's Avatar
    Real Name
    Rob
    Join Date
    Oct 2005
    Location
    Eastbourne, UK
    Posts
    982
    Liked
    2 times
    Quote Originally Posted by Juan Muriente
    That's a good idea and certainly we'll look at ways to incorporate some sort of warranty or even a free trial. However, this is something that needs to be explored/analyzed further. On the other hand, we do intend to introduce a vBSEO certified consultant program in combination with the affiliate program shortly. This will be both, a good business opportunity for SEO consultants and very beneficial for end users looking for SEO services
    Juan
    Well, Definitely count me in to that.
    Rob - SEO Specialist

  4. #19
    Junior Member Array
    Join Date
    Jan 2006
    Posts
    28
    Liked
    0 times
    Quote Originally Posted by buro9
    Apparently my hack for friendster style profile fields doesn't work with vbSEO.
    We've only just installed vBSEO and have encountered exactly this problem.

    A quick examination of the config_vbseo.php file suggests that it should actually be quite easy to resolve:

    Code:
    // ****** PREVENT vBSEO FROM REWRITING SPECIFIC LINKS ******
    // Enable this feature to prevent vBSEO from rewriting links when rel="novbseo" is added between
    // the '<a' and the 'href=' (i.e <a rel="novbseo" href=/thispage.php)
    define('VBSEO_ALLOW_REL_NOVBSEO',   1);
    We then rewrote your modification to member.php as follows:

    Code:
    if ($profilefield['type'] == 'checkbox' || $profilefield['type'] == 'select_multiple' )
    {
            $profileLinks[$ii] = ' <a rel="novbseo" href="'.$vbulletin->options['bburl'].'/memberlist.php?'.$vbulletin->session->vars['sessionurl'].'do=getall&amp;'.$profilefieldname.'[]='.urlencode(trim($profileLinks2[$ii])).'">'.trim($profileLinks[$ii]).'</a>';
    }
    else
    {
            $profileLinks[$ii] = ' <a rel="novbseo" href="'.$vbulletin->options['bburl'].'/memberlist.php?'.$vbulletin->session->vars['sessionurl'].'do=getall&amp;'.$profilefieldname.'='.urlencode(trim($profileLinks[$ii])).'">'.trim($profileLinks[$ii]).'</a>';
    }
    However, vBSEO appears to be ignoring the rel="novbseo" tag.

    Perhaps it is still being tested?

  5. #20
    vBSEO Staff Array Juan Muriente's Avatar
    Real Name
    Juan Carlos Muriente
    Join Date
    Jun 2005
    Location
    Puerto Rico
    Posts
    14,277
    Liked
    612 times
    Hi, try using <a rel='novbseo'...> (i.e., using ['] instead of ["]) - It should work.

    Note: We've added the ["] option in 2.3.3
    Juan Muriente / Crawlability Inc.
    Security bulletin - Patch Level for all supported versions released

    Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!


  6. #21
    Junior Member Array
    Join Date
    Jan 2006
    Posts
    28
    Liked
    0 times
    Quote Originally Posted by Juan Muriente
    Hi, try using <a rel='novbseo'...> (i.e., using ['] instead of ["]) - It should work.
    The single quotes are rewritten as double quotes.

    This happens even after disabling the vBSEO plugin and our .htaccess file, so I have no idea what might be responsible.

  7. #22
    vBSEO Staff Array Juan Muriente's Avatar
    Real Name
    Juan Carlos Muriente
    Join Date
    Jun 2005
    Location
    Puerto Rico
    Posts
    14,277
    Liked
    612 times
    PM Sent.
    Juan Muriente / Crawlability Inc.
    Security bulletin - Patch Level for all supported versions released

    Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!


  8. #23
    Senior Member Array
    Join Date
    Nov 2005
    Posts
    139
    Liked
    0 times
    I've updated my hack to include the single quoted rel='novbseo'

  9. #24
    vBSEO Staff Array Juan Muriente's Avatar
    Real Name
    Juan Carlos Muriente
    Join Date
    Jun 2005
    Location
    Puerto Rico
    Posts
    14,277
    Liked
    612 times
    Quote Originally Posted by buro9
    I've updated my hack to include the single quoted rel='novbseo'
    Neat - That is what I call teamwork
    Juan Muriente / Crawlability Inc.
    Security bulletin - Patch Level for all supported versions released

    Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!


  10. #25
    Senior Member Array
    Join Date
    Nov 2005
    Posts
    139
    Liked
    0 times
    It was actually someone's moaning that my hack wasn't compatible that led me to investigate what the hell it was

Page 2 of 2 FirstFirst 1 2

Similar Threads

  1. vBSEO 2.4.0 Released - Includes Google AdSense Targeting Feature!
    By Juan Muriente in forum vBSEO Announcements
    Replies: 74
    Last Post: 05-20-2006, 09:29 PM

Posting Permissions

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