Know the rules The Paceline Forum Builder's Spotlight


Go Back   The Paceline Forum > General Discussion

Reply
 
Thread Tools Display Modes
  #31  
Old 11-14-2017, 01:46 PM
Keith A's Avatar
Keith A Keith A is offline
Administrator
 
Join Date: Dec 2003
Location: Space Coast of FL
Posts: 18,099
Quote:
Originally Posted by fkelly View Post
granted that "https" rather than "http" is needed.

However my bookmark is set to https and I still get the message.

It looks like all the links on the page(s) are set to "forums.paceline.net ..." rather than the full "https://forums.paceline.net" For instance in composing this reply I have a little indicator "Logged in as fkelly" where "fkelly" is a link field and down in the bottom left of the browser the link shows as: "forums.paceline.net/member.php?u=31555" Likewise the link for Log Out shows as "forums.paceline.net/login.php?do=logout .. then a hash key. I wonder if there is some way of forcing the https in these links.
Thanks for the follow up. I thought I was correctly forcing https, but apparently this isn't working correctly after the server relocation. I will work on getting this fixed.
__________________
My '96 CSi & compact CSi
The Paceline . . . Enjoy the ride.
Reply With Quote
  #32  
Old 11-14-2017, 01:55 PM
fkelly fkelly is offline
Senior Member
 
Join Date: Jan 2010
Location: Delmar, NY
Posts: 364
You've seen:

https://www.vbulletin.com/forum/arti...forum-to-https

Hopefully we aren't using Godaddy

I don't suppose it could be as "simple" as a htaccess rewrite of http to https? Though I've put entire sites out of operation (temporarily) by messing with htaccess.
Reply With Quote
  #33  
Old 11-14-2017, 02:09 PM
Shoeman Shoeman is offline
Senior Member
 
Join Date: Jul 2010
Location: St. Louis, MO.
Posts: 759
Mine is working just fine now
Reply With Quote
  #34  
Old 11-14-2017, 02:18 PM
Keith A's Avatar
Keith A Keith A is offline
Administrator
 
Join Date: Dec 2003
Location: Space Coast of FL
Posts: 18,099
Quote:
Originally Posted by fkelly View Post
You've seen:

https://www.vbulletin.com/forum/arti...forum-to-https

Hopefully we aren't using Godaddy

I don't suppose it could be as "simple" as a htaccess rewrite of http to https? Though I've put entire sites out of operation (temporarily) by messing with htaccess.
Thanks for the link. I've read a bunch of different articles on this, but haven't seen that one yet. We are using GoDaddy for the domain registration, but they aren't hosting the site.

I have been modifying htaccess, and I too have created some problems when messing with this file, and it always makes me a little nervous when I start changing these settings. I have with our hosting company, and they were somewhat helpful, but not as much as I'd hoped.
__________________
My '96 CSi & compact CSi
The Paceline . . . Enjoy the ride.
Reply With Quote
  #35  
Old 11-14-2017, 03:18 PM
Bud_E Bud_E is offline
Senior Member
 
Join Date: Jan 2004
Location: Los Angeles, CA
Posts: 901
Quote:
Originally Posted by gone View Post
Really simple (user) fix:
  1. Log out
  2. Google "paceline forum"
  3. You'll see a match "Paceline forum powered by vBulletin" that has a link below it that starts "https..."
  4. Click on the link
  5. Log in
  6. Done
+1 . Worked for me!
Reply With Quote
  #36  
Old 11-14-2017, 07:59 PM
regularguy412's Avatar
regularguy412 regularguy412 is offline
Veni Veloce Vomiti
 
Join Date: Feb 2007
Location: Kudos to Ahneida for a twist on his 'title'
Posts: 2,738
I just deleted my old shortcut and created a new one. Now it looks like this:

http://forums.thepaceline.net/forumd...daysprune=&f=3

Takes me right to the General Discussion first page.

Mike in AR
__________________
2013 Serotta Fondo Ti w/Enve fork
Reply With Quote
  #37  
Old 11-15-2017, 07:06 AM
palincss palincss is offline
Senior Member
 
Join Date: Dec 2004
Location: Alexandria VA
Posts: 5,839
Quote:
Originally Posted by regularguy412 View Post
I just deleted my old shortcut and created a new one. Now it looks like this:

http://forums.thepaceline.net/forumd...daysprune=&f=3

Takes me right to the General Discussion first page.

Mike in AR
And it's still http rather than https -- and that works now without an error message because the admins fixed whatever the problem was!

Speaking of which, I still wonder about that "dst" parameter in the redirect, sure seems like it might mean daylight savings time to me, and since we are no longer on daylight savings time that would be invalid...
Reply With Quote
  #38  
Old 11-15-2017, 07:13 AM
Keith A's Avatar
Keith A Keith A is offline
Administrator
 
Join Date: Dec 2003
Location: Space Coast of FL
Posts: 18,099
Quote:
Originally Posted by regularguy412 View Post
I just deleted my old shortcut and created a new one. Now it looks like this:

http://forums.thepaceline.net/forumd...daysprune=&f=3

Takes me right to the General Discussion first page.

Mike in AR
As palincss mentioned, this should really be "https" instead of "http".
__________________
My '96 CSi & compact CSi
The Paceline . . . Enjoy the ride.
Reply With Quote
  #39  
Old 11-15-2017, 07:21 AM
jamiec jamiec is online now
Member
 
Join Date: Jun 2007
Location: Saratoga Springs, NY
Posts: 76
Quote:
Originally Posted by Keith A View Post
Thanks for the link. I've read a bunch of different articles on this, but haven't seen that one yet. We are using GoDaddy for the domain registration, but they aren't hosting the site.

I have been modifying htaccess, and I too have created some problems when messing with this file, and it always makes me a little nervous when I start changing these settings. I have with our hosting company, and they were somewhat helpful, but not as much as I'd hoped.
Keith, what are you using in htaccess to force https?

For all the sites I build I use the code below, It would go at top of you root htaccess file

RewriteEngine On

RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://forums.thepaceline.net/$1 [L,R=301]
Reply With Quote
  #40  
Old 11-15-2017, 08:20 AM
Keith A's Avatar
Keith A Keith A is offline
Administrator
 
Join Date: Dec 2003
Location: Space Coast of FL
Posts: 18,099
Thanks for the help and input on this problem!!! I'm a software engineer who knows enough about web-programming to usually get myself in trouble.

Here's what my .htaccess file is supposed to contain, but I will need to check the current file contents to see if our hosting company has modified this file.

Code:
RewriteCond %{HTTPS} off
RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteCond %{HTTP_HOST} ^www\.thepaceline\.net [NC]
RewriteRule ^(.*)$ https://forums.thepaceline.net/$1 [L,R=301]
I didn't craft this myself, but this came from an experience web-programmer friend.
__________________
My '96 CSi & compact CSi
The Paceline . . . Enjoy the ride.

Last edited by Keith A; 11-15-2017 at 08:23 AM.
Reply With Quote
  #41  
Old 11-15-2017, 08:28 AM
Keith A's Avatar
Keith A Keith A is offline
Administrator
 
Join Date: Dec 2003
Location: Space Coast of FL
Posts: 18,099
Looks like my current .htaccess file isn't what I set this previously. I know there are other ways to skin this https cat and will need to check with our host company and see what is going on.

Anyway, this is our current .htaccess file contents...

Code:
RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_HOST} .
RewriteCond %{HTTP_HOST} ^www\.thepaceline\.net
RewriteRule (.*) http://forums\.thepaceline\.net/$1 [R=301,L]
One of the other things this is supposed to do is redirect "www" to "forums".
__________________
My '96 CSi & compact CSi
The Paceline . . . Enjoy the ride.
Reply With Quote
  #42  
Old 11-15-2017, 11:59 AM
jamiec jamiec is online now
Member
 
Join Date: Jun 2007
Location: Saratoga Springs, NY
Posts: 76
Keith, the code below would take care of both. It would redirect all traffic to https://forums.thepaceline.net (including www)

Code:
RewriteEngine On 

RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://forums.thepaceline.net/$1 [L,R=301]

RewriteCond %{HTTP_HOST} !^forums.thepaceline.net [NC]
RewriteRule ^(.*)$ https://forums.thepaceline.net/$1 [L,R=301]
Reply With Quote
  #43  
Old 11-15-2017, 12:04 PM
Keith A's Avatar
Keith A Keith A is offline
Administrator
 
Join Date: Dec 2003
Location: Space Coast of FL
Posts: 18,099
Quote:
Originally Posted by jamiec View Post
Keith, the code below would take care of both. It would redirect all traffic to https://forums.thepaceline.net (including www)

Code:
RewriteEngine On 

RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://forums.thepaceline.net/$1 [L,R=301]

RewriteCond %{HTTP_HOST} !^forums.thepaceline.net [NC]
RewriteRule ^(.*)$ https://forums.thepaceline.net/$1 [L,R=301]
Thanks!!! I'll give this a try later on and we'll see what happens
__________________
My '96 CSi & compact CSi
The Paceline . . . Enjoy the ride.
Reply With Quote
  #44  
Old 11-15-2017, 01:11 PM
Keith A's Avatar
Keith A Keith A is offline
Administrator
 
Join Date: Dec 2003
Location: Space Coast of FL
Posts: 18,099
When using jamiec suggested changes, typing in the following:
o "www.thepaceline.net"
o "forums.thepaceline.net"
o "http://forums.thepaceline.net"
o "thepaceline.net

goes to "https://forums.thepaceline.net/forums/" and not "https://forums.thepaceline.net"
__________________
My '96 CSi & compact CSi
The Paceline . . . Enjoy the ride.
Reply With Quote
  #45  
Old 11-15-2017, 01:17 PM
Keith A's Avatar
Keith A Keith A is offline
Administrator
 
Join Date: Dec 2003
Location: Space Coast of FL
Posts: 18,099
But it looks like the following does work correctly...

Code:
RewriteCond %{HTTPS} off
RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteCond %{HTTP_HOST} ^www\.thepaceline\.net [NC]
RewriteRule ^(.*)$ https://forums.thepaceline.net/$1 [L,R=301]
So let me know if anyone still has a problem with this issue. All combinations I tried, correctly points this to the "https" site.
__________________
My '96 CSi & compact CSi
The Paceline . . . Enjoy the ride.
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -5. The time now is 03:09 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.