0

I recently installed a godaddy ssl certificate on my magento site. My home page loads fine with no mixed content. However, all the links in the navigation menu are being generated as http:// and the cart page has mixed content warnings. My config is: Auto redirect to base url: no use web server rewrites: no use secure urls in frontend: yes use secure urls in admin: yes offloader header: SSL_OFFLOADED

How do I get rid of all the mixed content? Which files do I need to change?

user3403792
  • 21
  • 1
  • 5

1 Answers1

-1

The unsecure URL under:

System > Configuration > General > Web > Unsecure

needs to be changed to https:// instead of http://. This fixed the issue.

user3403792
  • 21
  • 1
  • 5
  • this is an ugly work around, you should just set use SSL in frontent to true – DarkMukke Aug 11 '16 at 09:35
  • Agree, this is not a good solution. But what is a good solution for a SSL terminated proxy. Setting `$_SERVER['HTTPS']` to `on` has worked for me in the past but doesn't have any effect here – doz87 Jul 24 '18 at 11:12
  • The value for my `web/unsecure/base_url` starts with `https`, and I still get this error... – mhyousefi Apr 07 '20 at 20:51