Despite the ssl certificate installed on to hosting server, the e-commerce site (osCommerce shopping cart) showing Security Warning- This page contains both secured and non-secured items. How best to resolve this problem?
You probably have items on the secure page which are served through http:// they should be served through https://.
The problem was solved just with this small codings on the HomePage. <?php if ( $request_type != 'SSL' ) { ?>
I just came upon this answer. I was wondering the same thing on some of my sites. i will try this out. Thanks for the info.