Page 1 of 2 1 2 LastLast
Results 1 to 15 of 16

Login HELP: Willing to PAY for fixing the problem

This is a discussion on Login HELP: Willing to PAY for fixing the problem within the General Discussion forums, part of the vBSEO SEO Plugin category; After a month of working with VBulletin (no help) and my hosting company I have not fixed this. Here is ...

  1. #1
    Member
    Real Name
    Brian
    Join Date
    Nov 2008
    Posts
    32
    Liked
    0 times

    Login HELP: Willing to PAY for fixing the problem

    After a month of working with VBulletin (no help) and my hosting company I have not fixed this. Here is the problem:

    I have the newest Vbulletin (4.x) and VBSeo installed. Every time you login to the forum, it will redirect me, and I am no longer logged in. Once I refresh the page, I am logged in. As you know, this is not a good look.

    What has been done: VBulletin: Although they helped extensively, the problem still incurred.
    Hosting: Nothing. They said it looks like a caching problem, and did not help any more.

    I am more than willing to pay someone for the job to be completed and worked. I am getting pretty desperate now, and wanted to launch my forum a while ago. Here is the url:

    BikeReviews.com/forum/

  2. #2
    Senior Member webmastersitesi's Avatar
    Join Date
    Oct 2007
    Posts
    518
    Liked
    16 times
    Blog Entries
    3
    I had a similar problem. Mine was releated to my BROWSER security settings. Please make sure in the options you can do something at the browser you use.

  3. #3
    Member
    Real Name
    Brian
    Join Date
    Nov 2008
    Posts
    32
    Liked
    0 times
    Thanks for your reply.
    What do you mean by "Please make sure in the options you can do something at the browser you use."?

    Also, is there a way to fix this across the board? I can login to VBSeo forums perfectly fine and VBulletin (although it redirects you to forums/forums.php)

  4. #4
    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
    Hello Brian ,

    Can you please post your .htaccess content
    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

  5. #5
    Member
    Real Name
    Brian
    Join Date
    Nov 2008
    Posts
    32
    Liked
    0 times
    # 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\.yourdomain\.com
    #RewriteRule (.*) http://www.yourdomain.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]

  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,100
    Liked
    622 times
    Blog Entries
    4
    Please make sure you correctly redirect domain.com to www.domain.com or vice versa , more details can be found within [How to] Setup www.yourdomain.com or yourdomain.com (www vs. non-www) - With .htaccess 301 redirects
    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
    Member
    Real Name
    Brian
    Join Date
    Nov 2008
    Posts
    32
    Liked
    0 times
    Thank you for the response, but to be 100% honest I am a newb at this.
    I run a wordpress site at the home page (bikereviews.com) I would greatly appreciate if you could help by letting me know what code to add specifically. I am more than willing to "tip" as well. Thank you so much.

  8. #8
    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
    You need to use the following .htaccess on your forum folder :

    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\.bikereviews\.com$
    RewriteRule ^(.*)$ http://bikereviews.com/forum/$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]
    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

  9. #9
    Member
    Real Name
    Brian
    Join Date
    Nov 2008
    Posts
    32
    Liked
    0 times
    Thank you so much! This seems to have cured it!
    I have another small problem. When you click on the logo of the forum, you are taken from Bikereviews.com/forum/ to Bikereviews.com/forum/forum.php and when you click on the "Home" button, you will go to BikeReviews.com/forum/forum. I had this removed once (went into navbar area) and now it seems to have returned. I can not figure out where to remove this at now. Any help is greatly appreciated.

  10. #10
    vBSEO Staff Andrés Durán Hewitt's Avatar
    Real Name
    Andrés Durán
    Join Date
    Jul 2009
    Location
    Costa Rica
    Posts
    3,393
    Liked
    411 times
    Blog Entries
    1
    Hello,

    You can define 'Homepage Aliases' to fix your issue. It can be found at:

    vBSEO CP -> SEO Functions -> Homepage Settings -> Define Homepage Aliases

    You may enter:

    Code:
    forum.php
    forum.php?
    forum
    index.php
    index.php?
    And so on (one per line).
    Andrés Durán / Crawlability Inc.
    ˇvBSEO 3.6.0 GOLD Liberado!
    Inaugurando el NUEVO vBSEO Sitemap Generator 3.0. - ˇAHORA disponible para Clientes de vBSEO!

    Síguenos en: Facebook | Síguenos en: Twitter


  11. #11
    Member
    Real Name
    Brian
    Join Date
    Nov 2008
    Posts
    32
    Liked
    0 times
    Hey,
    I just tried that, and this does not redirect.
    I would like to have the redirect, but is there a way to remove the forum/forum and forum/forum.php extension?

  12. #12
    vBSEO Staff Andrés Durán Hewitt's Avatar
    Real Name
    Andrés Durán
    Join Date
    Jul 2009
    Location
    Costa Rica
    Posts
    3,393
    Liked
    411 times
    Blog Entries
    1
    It does, but your issue is directly related with the link in your tab 'Forum'. Have you ever edited the navbar template?. What are the settings for your "Forum URL" and "Script Name for Forum Home Page"?.

    I would suggest you defining the 'Script Name for Forum Home Page' option to index
    Andrés Durán / Crawlability Inc.
    ˇvBSEO 3.6.0 GOLD Liberado!
    Inaugurando el NUEVO vBSEO Sitemap Generator 3.0. - ˇAHORA disponible para Clientes de vBSEO!

    Síguenos en: Facebook | Síguenos en: Twitter


  13. #13
    Senior Member
    Real Name
    Eric
    Join Date
    Jan 2010
    Posts
    137
    Liked
    3 times
    ACP, options, URL

    Make sure it's corrent

  14. #14
    Member
    Real Name
    Brian
    Join Date
    Nov 2008
    Posts
    32
    Liked
    0 times
    Thank you very much for your help. I figured everything out. I am very thankful that their are knowledge-able people in the VBSeo forum (no one seems to help on VBulletin forums).

  15. #15
    vBSEO Staff Andrés Durán Hewitt's Avatar
    Real Name
    Andrés Durán
    Join Date
    Jul 2009
    Location
    Costa Rica
    Posts
    3,393
    Liked
    411 times
    Blog Entries
    1
    That's great to hear, Brian . If you faces further issues, let us know without hesitating.
    Andrés Durán / Crawlability Inc.
    ˇvBSEO 3.6.0 GOLD Liberado!
    Inaugurando el NUEVO vBSEO Sitemap Generator 3.0. - ˇAHORA disponible para Clientes de vBSEO!

    Síguenos en: Facebook | Síguenos en: Twitter


Page 1 of 2 1 2 LastLast

Similar Threads

  1. cookie/login problem?
    By Tor in forum Troubleshooting
    Replies: 14
    Last Post: 09-04-2009, 04:44 AM
  2. login problem
    By m7shsh in forum Troubleshooting
    Replies: 1
    Last Post: 07-06-2008, 04:59 PM
  3. Login Problem
    By O'NEAL in forum URL Rewrite Settings
    Replies: 2
    Last Post: 12-15-2006, 12:27 PM
  4. Login problem
    By njdevils in forum Troubleshooting
    Replies: 6
    Last Post: 11-20-2006, 01:44 PM
  5. Problem mit dem LogIn
    By smartie in forum Deutsch
    Replies: 5
    Last Post: 05-04-2006, 09:40 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
  •