Results 1 to 10 of 10

IE 7 Errors after upgraded to 3.3.0 RC1

This is a discussion on IE 7 Errors after upgraded to 3.3.0 RC1 within the Bug Reporting forums, part of the vBSEO SEO Plugin category; As most of my users are on IE 6 e IE 7, in fact more than 90% this is a ...

  1. #1
    Member
    Real Name
    Leandro
    Join Date
    Nov 2008
    Posts
    49
    Liked
    0 times

    IE 7 Errors after upgraded to 3.3.0 RC1

    As most of my users are on IE 6 e IE 7, in fact more than 90% this is a big issue for me.

    Upgrading to 3.3.0 RC1 was very easy and appearently flawless, I mean, I backed up my XML configurations, updated lines on htaccess, everything was pretty much easy.

    But just after that checking my board I've got lots of errors on IE (FF seems to be OK)

    Just like that:

    On User Profiles and Group Pages I'm getting 'vB_Inline_Mod' not defined.

    On picture pages - 'vB_Quickcomment' - not defined

    and on every simgle thread or single post page I'm getting 'Expected Object' error.

    Any idea on what would cause this ?

    This is killing me because makes IE pretty slow.

    I also noticed that I only get those errors when I'm logged in but I don't get any error as visitor.

  2. #2
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul, Turkey, Turkey
    Posts
    23,100
    Liked
    622 times
    Blog Entries
    4
    Do you get the same warning on vBSEO forums at same pages ?
    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

  3. #3
    Member
    Real Name
    Leandro
    Join Date
    Nov 2008
    Posts
    49
    Liked
    0 times
    Mert, after I post this and investigation deeply I found what it was and definetelly is a big issue.

    In fact the problem is with you new htaccess

    Old one in my case was:

    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\.mysite\.com
    #RewriteRule (.*) http://www.mysite.com/forums/$1 [L,R=301]
    RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
    RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron|vbseo_sitemap|redir\.php)
    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]
    And new one for 3.3.0 RC1 is:

    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\.mysite\.com
    #RewriteRule (.*) http://www.mysite.com/forums/$1 [L,R=301]
    RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
    RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron|vbseo_sitemap)
    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]
    As soon as saw those IE problems I thought it was a big deal in lay out but in fact this was scrolling up with members' profile paga considerably. Same as Social Groups.

    After spending 3 hours checking all vBSEO configurations, chenging rewriting rules (what a pain) and found nothing. I decided to switch back the new htaccess by the old one I've been using with 3.2.0 and I GOT IT !!!
    Everything was back to normal.

    Well, everything I could see. What would be the impact in using the old htaccess with 3.3.0 ?

    May be I'm wrong but this is a serious issue.

  4. #4
    Senior Member Shadab's Avatar
    Real Name
    Shadab
    Join Date
    Oct 2007
    Location
    Bhopal
    Posts
    821
    Liked
    0 times
    Blog Entries
    12
    Your 3.3.0 RC1 .htaccess lacks the entry for 'redir\.php' in the first RewriteCond
    (which is present in your old .htaccess)

    Has it anything to do with the errors you are facing ?

  5. #5
    Member
    Real Name
    Leandro
    Join Date
    Nov 2008
    Posts
    49
    Liked
    0 times
    In fact those two lines are different between the versions:

    Old one for 3.2.0 that was working:

    Code:
    RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron|vbseo_sitemap|redir\.php)
    RewriteRule ^((archive/)?(.*\.php(/.*)?)?)$ vbseo.php [L,QSA]
    New one for 3.3.0 that's causing me those issues:

    Code:
    RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron|vbseo_sitemap)
    RewriteRule ^((archive/)?(.*\.php(/.*)?))$ vbseo.php [L,QSA]
    I've noticed this difference two but as was told on on the 3.3.0 RC1 release thread, htaccess *must* be updated with this version, so I did it.

    Both htaccess came from original downloads supplied and nothing was changed from them.

  6. #6
    Senior Member briansol's Avatar
    Real Name
    Brian
    Join Date
    Apr 2006
    Location
    Central CT, USA
    Posts
    6,981
    Liked
    8 times
    redir.php is not a native vb or vbseo script.

    you must've added that in at some point.

  7. #7
    Member
    Real Name
    Leandro
    Join Date
    Nov 2008
    Posts
    49
    Liked
    0 times
    Yes, Brian, checking again my original files, you're right.

    For some reason I can't find why, I have to include it. But I'm sure I've got this fix from here. I just can't find were. I will check againg aroun here to see if I get from.

    Anyway, what would be the impact I should face in using 3.2.0 old htaccess ?

  8. #8
    Member
    Real Name
    Leandro
    Join Date
    Nov 2008
    Posts
    49
    Liked
    0 times
    holy crap, I found from were redir.php is in exclude list. I'm using YSLOW!

    Well, as YSLOW is kind of popular among people here at least with my dumbness I can take something good that may help others.

    OK, new question know, is there a problem to use the new htaccess for 3.3.0 like this ?

    Code:
    RewriteCond %{REQUEST_URI} ! admincp/|modcp/|cron|vbseo_sitemap|redir\.php)
    RewriteRule ^((archive/)?(.*\.php(/.*)?))$ vbseo.php [L,QSA]
    It seems just one line has changed on the new htacess, right ?

  9. #9
    Member
    Real Name
    Leandro
    Join Date
    Nov 2008
    Posts
    49
    Liked
    0 times
    I tried like I said and it worked fine now. Thank you guys for pointing me out.

  10. #10
    Icy
    Icy is offline
    Member Icy's Avatar
    Real Name
    Icy
    Join Date
    Feb 2006
    Location
    /dev/null/
    Posts
    80
    Liked
    0 times
    Yah I was having the same problem. Forgot to add redir.php in .htaccess Thanks

Similar Threads

  1. Just upgraded to sitemap 2.2
    By Gregory in forum Troubleshooting
    Replies: 12
    Last Post: 11-22-2008, 05:21 PM
  2. Upgraded to 3.7.2, URL re-write not working
    By Tiberonmagnus in forum Troubleshooting
    Replies: 2
    Last Post: 08-01-2008, 03:05 PM
  3. Upgraded to VBSeo 2.0, having problems.
    By AdamUOF in forum General Discussion
    Replies: 3
    Last Post: 07-06-2008, 07:53 PM
  4. Upgraded to RC7 and...
    By 1QuickSI in forum Troubleshooting
    Replies: 2
    Last Post: 05-31-2008, 09:35 AM
  5. Using 2.4.0, upgraded to vB 3.6.0
    By Sal Collaziano in forum General Discussion
    Replies: 5
    Last Post: 08-07-2006, 01:34 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
  •