Re: Adding https in $html->url

2008-12-04 Thread Mathew
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

Re: Adding https in $html->url

2008-12-04 Thread Jipson
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

Re: Adding https in $html->url

2008-12-04 Thread Lance Willett
> 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

Adding https in $html->url

2008-12-03 Thread Jipson
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