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

"The page isn't redirecting properly" after fresh install

This is a discussion on "The page isn't redirecting properly" after fresh install within the Troubleshooting forums, part of the vBSEO SEO Plugin category; I would love to, but unfortunately I'm running the software from my local computer which doesn't serve http pages to ...

  1. #16
    Junior Member
    Real Name
    jaanus kaljuvee
    Join Date
    Dec 2008
    Posts
    29
    Liked
    0 times
    I would love to, but unfortunately I'm running the software from my local computer which doesn't serve http pages to the outside world.

  2. #17
    vBSEO Staff Brian Cummiskey's Avatar
    Real Name
    Brian Cummiskey
    Join Date
    Jul 2009
    Location
    btwn NYC and Boston
    Posts
    12,789
    Liked
    657 times
    Blog Entries
    2
    Do you have a test license for that area? vbseo will only work on the registered domain.

  3. #18
    Junior Member
    Real Name
    jaanus kaljuvee
    Join Date
    Dec 2008
    Posts
    29
    Liked
    0 times
    Yes I do have a license for the domain I have installed the software. Only thing is that the domain is accessible from my local computer. If you want to see how it works, look at the video I have posted, especially the part where I show the /etc/hosts part. Furthermore you can see in the middle how I copy-paste a valid key to the field and successfully save it.

  4. #19
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul, Turkey, Turkey
    Posts
    23,111
    Liked
    622 times
    Blog Entries
    4
    The issue can highly be related to your test installation or your server configuration
    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. #20
    Junior Member
    Real Name
    jaanus kaljuvee
    Join Date
    Dec 2008
    Posts
    29
    Liked
    0 times
    Yes I'm aware of that. That is why I started the video with showing the apache configuration. It is really sad that after spending a couple of good hours for capturing/editing/posting the video, I'm still none the wiser. It is not like I have done anything special to set up the whole thing. Should I start my next video with typing "sudo apt-get install apache" to the terminal or installation of the operating system?

    Honestly I'm getting a little tired of these one-liners such as "open a ticket" or "are you sure you have valid license" that do little to help me with the issue and could have easily found the answer for if he had actually paid attention to what I posted earlier.

    I have posted the whole installation process in the video, what else do you want me to do? If you want me to figure this out myself then please just say so, you would save me a great deal of time and I would be happy to look for the support elsewhere.

    I'm not mad or anything, but my patience is starting to wear thin seeing the official support is not what I thought it would be and I still keep hitting the same wall over and over again.

    However I do want to thank Andrés for actually looking at my video and taking the time to help me with the issue. Thanks to him I'm now a bit closer to getting the vbseo to work.
    Last edited by jaz6ix; 12-17-2011 at 02:47 PM. Reason: couple of spelling mistakes

  6. #21
    vBSEO Staff Brian Cummiskey's Avatar
    Real Name
    Brian Cummiskey
    Join Date
    Jul 2009
    Location
    btwn NYC and Boston
    Posts
    12,789
    Liked
    657 times
    Blog Entries
    2
    Officially, we support the licensed url only, not test installs. We could likely fix this in 3 minuets if we had access to it. Without access, it's a tedious process of going back and forth as you are experiencing.

    You're stuck a in a loop somewhere. htaccess is pointing to something that then points back to that original source, and after 5 or 6 iterations, the browser throws the error you are seeing.

    custom CMS domain should be off/blank
    CMS home should be http://forums.letspoker.com/
    index.php should include content.php

    all of this is outlined in more detail here:
    vBSEO 3.5 Release Candidate 1 is here! - vBulletin SEO Forums


    i'm getting all of 20 kbs off your video, so it will be another hour before i'm even able to watch it.
    Last edited by Brian Cummiskey; 12-17-2011 at 06:06 PM.
    Brian Cummiskey / Crawlability Inc.
    Security vbulletin - Patch Level for all supported versions released!

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


  7. #22
    vBSEO Staff Brian Cummiskey's Avatar
    Real Name
    Brian Cummiskey
    Join Date
    Jul 2009
    Location
    btwn NYC and Boston
    Posts
    12,789
    Liked
    657 times
    Blog Entries
    2
    Yup, looks like that is what you did wrong. using / for the cms home value is incorrect. it needs to be the full domain in the cms home with trailing slash

  8. #23
    Junior Member
    Real Name
    jaanus kaljuvee
    Join Date
    Dec 2008
    Posts
    29
    Liked
    0 times
    I know troubleshooting this myself can take more time than just allowing you to gain access so you could figure this out. That is why I'm putting as much effort into solving this as possible and giving you as much information as I possibly can.

    I tried to use different values for the cms home field. I only used a slash, leaving it empty because I had already tried all the standard default values such as content/ and content.html with no success. I have now tried custom value of http://forums.letspoker.com/

    The homepage does not show 404, but rest of the links starting with http://forums.letspoker.com/content/ do.

    I then tried to use http://forums.letspoker.com/content/ in cms home field, but this gets me the same result as before - 404 when I try to navigate to http://forums.letspoker.com

    Edit: I'm not stuck in the loop anymore. Thanks to Andrés a few posts back, I got 1 step closer after removing MultiViews from the apache configuration which I'm pretty sure caused the infinite redirect loop.

    Also it matters not on which computer I host the vbulletin installation. Just because you don't have access to my PC, should not make the license invalid.

  9. #24
    Junior Member
    Real Name
    jaanus kaljuvee
    Join Date
    Dec 2008
    Posts
    29
    Liked
    0 times
    There was a section in virtualhost file:

    Code:
    <Directory "/var/www/letspoker.com">
            Options Indexes FollowSymLinks
            AllowOverride None
            Order allow,deny
            Allow from all
        </Directory>
    which supposedly prevented the .htaccess files from working. I changed that section to:

    Code:
    <Directory "/var/www/letspoker.com">
            Options Indexes FollowSymLinks
            AllowOverride All
            Order deny,allow
            Allow from all
        </Directory>
    So far so good.

Page 2 of 2 FirstFirst 1 2

Similar Threads

  1. vBulletin 3.x One thread keeps coming up with "The page isn't redirecting properly" error.
    By bulletstorm in forum Troubleshooting
    Replies: 8
    Last Post: 01-11-2011, 02:25 AM
  2. vBulletin 4.x Error: "The page isn't redirecting properly" when viewing archives page
    By Danny M in forum Troubleshooting
    Replies: 5
    Last Post: 06-01-2010, 11:39 AM
  3. "The page isn't redirecting properly."
    By hypermiler in forum Troubleshooting
    Replies: 4
    Last Post: 09-25-2008, 05:39 PM
  4. Replies: 7
    Last Post: 01-14-2008, 03:09 PM
  5. "The page isn't redirecting properly"
    By Aunt Clara in forum Custom Rewrite Rules
    Replies: 3
    Last Post: 10-24-2006, 10:03 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
  •