What is the URL where this is happening ?
What is the URL where this is happening ?
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.
Try this
Click here
Try the login page and checkout page!
Tutorials on Zen Cart
http://tutorials.zen-cart.com/index.php
---------------
advanced.programmer at gmail dot com
In love with Zen Cart!!
----
Anyone??
----
Tutorials on Zen Cart
http://tutorials.zen-cart.com/index.php
---------------
advanced.programmer at gmail dot com
In love with Zen Cart!!
superprg,
I took a look at your source, and it appears that this is responsible for your problem:
I don't know the fix myself, but the following might help:Code:<base href="http://www.poker-dude.com/" />
http://www.zen-cart.com/forum/showthread.php?t=54680
Formerly KGZotU
Integrated Checkout Without Account (wiki w/pics, demostore and download)
Defunct member, no longer able to support COWOA. (link)
Well in my template I have
<base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER . DIR_WS_HTTPS_CATALOG : HTTP_SERVER . DIR_WS_CATALOG ); ?>" />
Tutorials on Zen Cart
http://tutorials.zen-cart.com/index.php
---------------
advanced.programmer at gmail dot com
In love with Zen Cart!!
I'm sorry that I don't know more to tell you why it's happening. For whatever reason, however, your cart is serving that line of source in your secure pages, and your visitors browsers in turn are grabbing all of your relative url content via http.
--Joe
Formerly KGZotU
Integrated Checkout Without Account (wiki w/pics, demostore and download)
Defunct member, no longer able to support COWOA. (link)
Well, what do I do now?
As instructed by Ajeh
I put this script in the server
and all I get is I SEE NONSSLCode:<?php $request_type = ((isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) == 'on') || (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == '1') || (isset($_SERVER['HTTP_X_FORWARDED_BY']) && strstr(strtoupper($_SERVER['HTTP_X_FORWARDED_BY']),'SSL')) || (isset($_SERVER['HTTP_X_FORWARDED_HOST']) && strstr(strtoupper($_SERVER['HTTP_X_FORWARDED_HOST']),'SSL')) || (isset($_SERVER['SCRIPT_URI']) && strtolower(substr($_SERVER['SCRIPT_URI'], 0, 6)) == 'https:') || (isset($_SERVER['SERVER_PORT']) && $_SERVER['SERVER_PORT'] == '443' ) ) ? 'SSL' : 'NONSSL'; echo 'I SEE ' . $request_type; ?>
Tutorials on Zen Cart
http://tutorials.zen-cart.com/index.php
---------------
advanced.programmer at gmail dot com
In love with Zen Cart!!