Please help someone.
when I go into my website with internet explorer, click on my account I get this message on top
To help protect your security, Internet explorer has blocked this website from displaying content with security certificate errors.
when I browse with mozilla, it everything is fine. I have 256 bit encryption. could somebody please help me with this?
I don't think its config.php error since it works fine on firefox. why would it work on mozilla but get that message on ie?
Latest News: (loading..)
SSL Help. I tried to search for answer but didn't find it
Started by eunalice, Nov 10 2009, 08:21
3 replies to this topic
#1
Posted 10 November 2009, 08:21
#2
Posted 10 November 2009, 08:37
strange behavior,
try change in /includes/application_top.php
$request_type = (getenv('HTTPS') == 'on') ? 'SSL' : 'NONSSL';
to
$request_type = (getenv('HTTPS') == '1') ? 'SSL' : 'NONSSL';
then in includes/functions/general.php
if ( (ENABLE_SSL == true) && (getenv('HTTPS') == 'on') ) { // We are loading an SSL page
to
if ( (ENABLE_SSL == true) && (getenv('HTTPS') == '1') ) { // We are loading an SSL page
on other hosts as 1and1 try another hack - try searching the forums for ssl
hopes that your configuration.php has the right settings...
regards
try change in /includes/application_top.php
$request_type = (getenv('HTTPS') == 'on') ? 'SSL' : 'NONSSL';
to
$request_type = (getenv('HTTPS') == '1') ? 'SSL' : 'NONSSL';
then in includes/functions/general.php
if ( (ENABLE_SSL == true) && (getenv('HTTPS') == 'on') ) { // We are loading an SSL page
to
if ( (ENABLE_SSL == true) && (getenv('HTTPS') == '1') ) { // We are loading an SSL page
on other hosts as 1and1 try another hack - try searching the forums for ssl
hopes that your configuration.php has the right settings...
regards
#3
Posted 11 November 2009, 01:27
I tried that and now I have a pop up window saying do you want to display content that is not delivered securely. My config.php is correct It works perfect on Mozilla.
#4
Posted 11 November 2009, 02:45
eunalice, on 11 November 2009, 01:27, said:
I tried that and now I have a pop up window saying do you want to display content that is not delivered securely. My config.php is correct It works perfect on Mozilla.
The "unsecure items" would be scripts or images from HTTP source on HTTPS pages
If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you.
"Headers already sent" - The definitive help
"Cannot redeclare ..." - How to find/fix it
SSL Implementation Help
Like this post? "Like" it again over there >
"Headers already sent" - The definitive help
"Cannot redeclare ..." - How to find/fix it
SSL Implementation Help
Like this post? "Like" it again over there >














