Hi Jipson,
I'm not sure exactly but I think you can define the protocol to the
router in cake like this.
url(array('base'=>'https://','url'=>'/carts/authorize'));?>
You can also do this with cake controllers.
url(array
('base'=>'https://','controller'=>'carts','action'=>authorize'))?>
I think
Hi I am using $html->url instead of $html->link because, I have to
link to an image...
On Dec 4, 6:30 pm, Lance Willett <[EMAIL PROTECTED]> wrote:
> > i want to get ishttps://mycart/carts/authorize/, what i have to do for it
>
> Hi Jipson,
> Most likely you'll need to include the full path to
> i want to get ishttps://mycart/carts/authorize/, what i have to do for it
Hi Jipson,
Most likely you'll need to include the full path to the secure URL,
like this:
url('https://mycart/carts/authorize/); ?>
in order to force the HTTPS protocol.
Out of curiosity, why are you using $html->url
Hi Friends,
In my project i am giving the links to payment page view as
follows.
url('/carts/authorize/); ?>
now i am getting the output url as http://mycart/carts/authorize/ what
i want to get is
https://mycart/carts/authorize/ , what i have to do for it,
anybody please help me.
Tha