SSL Problems

This is a discussion on "SSL Problems" within the Website Planning section. This forum, and the thread "SSL Problems are both part of the Planning Your Website category.



Go Back   Webforumz.com > Main Forums > Planning Your Website > Website Planning

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Aug 6th, 2007, 13:39
New Member
Join Date: Aug 2007
Location: BVI
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
SSL Problems

Hi,

I recently installed an SSL certificate for my website. The problem is that it was issued to http://myurl.com. I now have it set up so that when someone were to access http://myurl.com they will be redirected to https://myurl.com. www.myurl.com and http://www.myurl.com will also redirect to https://myurl.com. The problem is that if one were to access the site by myurl.com , they will not get redirected to the https site. They will be sent to the unsecured http site. I have no way of redirecting this.

My website has a register page, a forgot password, and a client area that all must be secure. I can remedy part of this problem by changing all the links on the site that point to these pages to their https counterparts. The only problem is that there is a login box on every page of the site. I can change the login destination to https, but the actual login page, which is just about every page on the site, won't be secure.

I'm sorry if this is confusing. It's a bit hard to explain. Basically, I need to know how to make the login secure if one were to access the site via a link that does not get redirected to the https site. myurl.com is the only one that won't redirect me to the secure site.

Is there a way of going about this without having to issue another certifcate?

Your help would be greatly appreciated. Thanks.
Reply With Quote

  #2 (permalink)  
Old Aug 8th, 2007, 17:44
SuperMember

SuperMember
Join Date: Aug 2003
Location: Castle Rock, CO
Age: 36
Posts: 164
Thanks: 0
Thanked 0 Times in 0 Posts
Re: SSL Problems

If you are using ASP, you can put this before the <head>
Code: Select all
<%
dim servPro 
servPro = Request.ServerVariables("HTTPS")

if servPro = "off" then
    response.redirect  "https://example.com/default.asp"
    response.end
end if

%>
to redirect the user
Reply With Quote
Reply

Tags
certificate, https, security, ssl

Thread Tools

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
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
IE Problems AndrewChip Web Page Design 9 Dec 29th, 2007 14:35
IE7 problems... Gooner Starting Out 17 Aug 21st, 2007 13:02
Problems with IE etoare Web Page Design 5 Jun 14th, 2007 20:40
Having some problems, with IE and FF Powderhound Web Page Design 10 Oct 25th, 2006 22:12
IE/FF Problems adamas85 Web Page Design 3 Apr 21st, 2006 01:51


All times are GMT. The time now is 08:49.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43