Set cookie domain

This commit is contained in:
grandeljay 2022-09-22 12:38:05 +02:00
parent 6478af7d41
commit dbfb343100

View file

@ -46,7 +46,8 @@ session_start(
array( array(
'name' => 'wishthis', 'name' => 'wishthis',
'cookie_lifetime' => $sessionLifetime, 'cookie_lifetime' => $sessionLifetime,
'cookie_path' => '/' 'cookie_path' => '/',
'cookie_domain' => '.wishthis.online',
) )
); );