Results 1 to 5 of 5

Minor Link Re-Write Issue

This is a discussion on Minor Link Re-Write Issue within the Troubleshooting forums, part of the vBSEO SEO Plugin category; I use a product called Interactive Profiles. A new feature of there's has the ability to supress custom css that ...

  1. #1
    Member
    Real Name
    Derek
    Join Date
    Sep 2006
    Location
    Spokane, WA
    Posts
    76
    Liked
    0 times

    Minor Link Re-Write Issue

    I use a product called Interactive Profiles. A new feature of there's has the ability to supress custom css that the user shows on their profiles. Well VBSEO messes the link up. The code is:

    Code:
    <td class="vbmenu_control"><a href="member.php?$session[sessionurl]u=$userinfo[userid]&amp;no_css=1">$vbphrase[iprof_suppress_customization]</a></td>
    It rewrites that as a link to the users profile and drops off the &no_css=1 that should be there.

    I did find that if I change the code to member.php?username=username that it works. But obviously it's not exactly clean
    Owner / Webmaster
    House of Crazed
    http://www.houseofcrazed.com

  2. #2
    Senior Member briansol's Avatar
    Real Name
    Brian
    Join Date
    Apr 2006
    Location
    Central CT, USA
    Posts
    6,981
    Liked
    8 times
    the default setting does not have QSA (query string append) enabled on it for obvious reasons...

    you're going to want to add a custom re-write rule (CRR) for this condition.

    i'm no good at these things, so i can't provide you with any code that will work

  3. #3
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    25,744
    Liked
    169 times
    Hello,

    you can change the link to:
    HTML Code:
    <a rel="novbseo" href="member.php?xxx">
    and manually enable this option in config_vbseo.php file:
    PHP Code:
        define('VBSEO_ALLOW_REL_NOVBSEO',   1); 

  4. #4
    rob
    rob is offline
    Senior Member rob's Avatar
    Real Name
    Rob
    Join Date
    Oct 2005
    Location
    Eastbourne, UK
    Posts
    982
    Liked
    2 times
    Hi Oleg....

    Another issue with interactive profiles.....

    If you check out my own profile on webforumz.com, you will see there are profile comments there..... for some reason, vbseo has added permalinks to the profile comments which point to random threads... :S very weird.
    Rob - SEO Specialist

  5. #5
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    25,744
    Liked
    169 times
    Try to modify functions_vbseo_hook.php file:
    FIND:
    PHP Code:
                $vbseo_postbit_pingback = (VBSEO_POSTBIT_PINGBACK 0) && (THIS_SCRIPT != 'private'); 
    REPLACE WITH:
    PHP Code:
                $vbseo_postbit_pingback = (VBSEO_POSTBIT_PINGBACK 0) && (THIS_SCRIPT != 'private') && (THIS_SCRIPT != 'member'); 

Similar Threads

  1. Syntax to write "Rewrite Rules"?
    By Basit in forum Custom Rewrite Rules
    Replies: 12
    Last Post: 10-19-2005, 04:02 PM
  2. vBSEO 2.0 RC7 Released
    By Juan Muriente in forum vBSEO Announcements
    Replies: 17
    Last Post: 09-08-2005, 11:00 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
  •