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

[REQUEST] Integrate or support YSLOW with/in vBSEO

This is a discussion on [REQUEST] Integrate or support YSLOW with/in vBSEO within the vBSEO Features Archive forums, part of the vBulletin Links & Resources category; Try to modify your .htaccess file: FIND: Code: RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron) REPLACE WITH: Code: RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron|redir\.php) (i.e. add redir.php ...

  1. #16
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    25,689
    Liked
    157 times
    Try to modify your .htaccess file:
    FIND:
    Code:
    RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron)
    REPLACE WITH:
    Code:
    RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron|redir\.php)
    (i.e. add redir.php to the exclusion list)
    Oleg Ignatiuk / Crawlability Inc.
    vBSEO 3.6.0 GOLD Released!
    Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!


  2. #17
    Senior Member redlabour's Avatar
    Real Name
    André
    Join Date
    Sep 2005
    Location
    Germany, NRW
    Posts
    373
    Liked
    0 times

    Thumbs up

    Quote Originally Posted by Oleg Ignatiuk View Post
    Try to modify your .htaccess file:
    FIND:
    Code:
    RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron)
    REPLACE WITH:
    Code:
    RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron|redir\.php)
    (i.e. add redir.php to the exclusion list)
    PROBLEM SOLVED!!!!

  3. #18
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    25,689
    Liked
    157 times
    yay!
    Oleg Ignatiuk / Crawlability Inc.
    vBSEO 3.6.0 GOLD Released!
    Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!


  4. #19
    Junior Member
    Real Name
    tpn87
    Join Date
    Sep 2006
    Posts
    14
    Liked
    0 times
    Does it matter where the yslow htaccess stuff goes, either above or below the VBSEO stuff?

  5. #20
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    25,689
    Liked
    157 times
    It should work in both cases.
    Oleg Ignatiuk / Crawlability Inc.
    vBSEO 3.6.0 GOLD Released!
    Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!


  6. #21
    Senior Member redlabour's Avatar
    Real Name
    André
    Join Date
    Sep 2005
    Location
    Germany, NRW
    Posts
    373
    Liked
    0 times
    Any Idea why it works at this Guy?

    Code:
    # Comment the following line (add '#' at the beginning)
    # to disable mod_rewrite functions.
    # Please note: you still need to disable the hack in
    # the vBSEO control panel to stop url rewrites.
    RewriteEngine On
    
    # Some servers require the Rewritebase directive to be
    # enabled (remove '#' at the beginning to activate)
    # Please note: when enabled, you must include the path
    # to your root vB folder (i.e. RewriteBase /forums/)
    RewriteBase /
    
    RewriteCond %{HTTP_HOST} !^www\.g6-team\.com
    RewriteRule (.*) http://www.g6-team.com/$1 [L,R=301]
    
    RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
    
    RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron)
    RewriteRule ^((archive/)?(.*\.php(/.*)?)?)$ vbseo.php [L,QSA]
    
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !^(admincp|modcp|clientscript|cpstyles|images)/
    RewriteRule ^(.+)$ vbseo.php [L,QSA]
    
    RewriteEngine On
    
    ####Charset
    AddDefaultCharset Off
    
    ####Gzip
    <IfModule mod_rewrite.c>
    RewriteCond %{REQUEST_FILENAME} !-f
    #RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)(js|css)$ redir.php?file=$1$2&type=$2 [L]
    </IfModule>
    
    ####ETags
    FileETag None
    
    ####Expires
    <IfModule mod_expires.c>
    ExpiresActive On
    ExpiresByType image/gif A2592000
    ExpiresByType image/jpeg A2592000
    ExpiresByType image/png A2592000
    ExpiresByType application/x-shockwave-flash A2592000
    ExpiresByType text/css A2592000
    ExpiresByType application/x-javascript A2592000
    </IfModule>
    vBulletin.org Forum - View Single Post - YSLOW 1.0.3 (Make Your Forum Faster)

  7. #22
    Senior Member briansol's Avatar
    Real Name
    Brian
    Join Date
    Apr 2006
    Location
    Central CT, USA
    Posts
    6,981
    Liked
    8 times
    that shouldn't work. that htaccess file is invalid.

    you shouldn't turn the rewrite engine on twice.

  8. #23
    Member
    Real Name
    Daron Brewood
    Join Date
    Jun 2007
    Posts
    30
    Liked
    0 times
    ... and now working for me, both for the portal and the forums.

    Cheers Oleg!

  9. #24
    Junior Member
    Real Name
    Pedro
    Join Date
    Mar 2008
    Posts
    13
    Liked
    0 times
    Quote Originally Posted by briansol View Post
    that shouldn't work. that htaccess file is invalid.

    you shouldn't turn the rewrite engine on twice.

    The file is mine. Invalid or not (you're saying it) it works just fine. But, as you are the expert, i've removed the repeated one just in case.

  10. #25
    Member
    Real Name
    Bob
    Join Date
    Jun 2008
    Posts
    32
    Liked
    0 times
    Fixed for me.

  11. #26
    Senior Member MadK's Avatar
    Real Name
    Leo
    Join Date
    Jun 2008
    Location
    Canada
    Posts
    140
    Liked
    0 times
    Blog Entries
    2
    So eh, is it working fine for vBSEO 3.2?

  12. #27
    Senior Member
    Real Name
    Michael Biddle
    Join Date
    Jan 2007
    Location
    Southern California
    Posts
    7,097
    Liked
    4 times
    The above fix should have it all working.
    The Forum Hosting - Forum Hosting from the Forum Experts

  13. #28
    Senior Member MadK's Avatar
    Real Name
    Leo
    Join Date
    Jun 2008
    Location
    Canada
    Posts
    140
    Liked
    0 times
    Blog Entries
    2
    Quote Originally Posted by Michael Biddle View Post
    The above fix should have it all working.
    Alrighto, thanks albeit I notice no difference with YSLOW!

  14. #29
    Member
    Real Name
    Leandro
    Join Date
    Nov 2008
    Posts
    49
    Liked
    0 times
    Just a tip for those using YSLOW and will upgrade to 3.3.0

    You might be interested.... IE 7 Errors after upgraded to 3.3.0 RC1

  15. #30
    Senior Member redlabour's Avatar
    Real Name
    André
    Join Date
    Sep 2005
    Location
    Germany, NRW
    Posts
    373
    Liked
    0 times
    *lol*

    [REQUEST] Integrate or support YSLOW with/in vBSEO

    The most People are not forgetting the customised Rules they need after Upgrading.

Page 2 of 2 FirstFirst 1 2

Similar Threads

  1. a request to VBSEO support
    By prakash123 in forum Pre-Sales Questions
    Replies: 13
    Last Post: 03-04-2008, 07:16 PM
  2. Will VBseo integrate itself into the new vbulletin blogs?
    By Mert in forum vBSEO Features Archive
    Replies: 1
    Last Post: 08-01-2007, 11:43 PM

Tags for this Thread

Posting Permissions

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