How to make all cookies secure for ssl connection?
.htaccess
Header always edit Set-Cookie (.*) "$1; HTTPOnly; Secure"
or you can do it seperately by declaring one by one:
Header always edit Set-Cookie (.*) "$1; HTTPOnly" Header always edit Set-Cookie (.*) "$1; Secure"