I'm getting my own SSL certificate soon because it is the right thing to
do, but until then I have this shopping cart on an ISP that gives me free
shared SSL. The cart breaks in HTTPS because of $PHP_SELF and the cart's
tech support blames my ISP.
I'm wondering if this is true.
So, my site, let's call it mydomain.com would normally access at:
but when viewing in HTTPS it is: https://myISP.com/mydomain.com/
My shopping cart breaks because let's say I set up
/temp.php
as <?php phpinfo(); ?>
And view in HTTP and look at PHP_SELF: /temp.php
OK, that is normal.
But in HTTPS PHP_SELF still gives me: /temp.php
even though in the browser it is /mydomain.com/temp.php
Is this normal in a shared SSL-certificate environment?
John.
do, but until then I have this shopping cart on an ISP that gives me free
shared SSL. The cart breaks in HTTPS because of $PHP_SELF and the cart's
tech support blames my ISP.
I'm wondering if this is true.
So, my site, let's call it mydomain.com would normally access at:
but when viewing in HTTPS it is: https://myISP.com/mydomain.com/
My shopping cart breaks because let's say I set up
/temp.php
as <?php phpinfo(); ?>
And view in HTTP and look at PHP_SELF: /temp.php
OK, that is normal.
But in HTTPS PHP_SELF still gives me: /temp.php
even though in the browser it is /mydomain.com/temp.php
Is this normal in a shared SSL-certificate environment?
John.
Comment