Yello,
When people login to my site, they are redirected to
https://mysite.org/their_account That part is working fine for me.
The problem comes when I use form_tags. After they click the submit
button, the next page they land on is http
My question is, how can I keep them on https, even after they fill out a
form and hit submit?
My form tag seems to be producing the right HTML, but it still doesn’t
keep them in https
<%= form_tag( {:protocol => ‘https://’, :only_path => false, :action =>
:pre_checkout }, {:class => ‘form-large’}) %>
Any ideas on this?