Jump to content

Turning On Https Flag For Cookie


php_begins

Recommended Posts

So I am using this legacy application which is in php 4.

I am trying to set the httponly flag and secure flag on.

 

This is my code:

 

header( "Set-Cookie:". $cookieName."=".$sessId."; expires=".$expireSeconds."; sessionID=".$sessId.";path=".$path."; domain=".$domain."; httponly; secure");

 

When I test it, The secure flag is set on but the httponly is not.

 

Could it because the URL uses https protocol?

 

 

Also, does the expire field take seconds. right now,

$expireSeconds=14400;

How do I modify the code to rectify this if it doesnt expect seconds as a parameter.

Link to comment
https://forums.phpfreaks.com/topic/270073-turning-on-https-flag-for-cookie/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.