The logs report the following warning: ini_set(): A session is active. You cannot change the session module's ini settings at this time in stanford_ssp_force_https() (line 254 of /mnt/www/html/swssoe/docroot/sites/all/modules/stanford/stanford_ssp/stanford_ssp.module.
The problem. Another Stanford module by the name of Webauth has already called [ini_set()](https://github.com/Stanford/WMD/blob/7894e24736471773ab19f27698fafed5f7830079/webauth.module#L24) method, which is probably what makes ini_set() in the other module create the warning.
Solution, while it's possible to remove ini_set (cookie_session.secure is already set to '1') from the stanford_ssp module, I'm not sure why it was placed there in the first place. Leaving it in, but wrapped around a condition that checks for cookie session first.
READY FOR REVIEW
Summary
ini_set(): A session is active. You cannot change the session module's ini settings at this time in stanford_ssp_force_https() (line 254 of /mnt/www/html/swssoe/docroot/sites/all/modules/stanford/stanford_ssp/stanford_ssp.module
.[ini_set()](https://github.com/Stanford/WMD/blob/7894e24736471773ab19f27698fafed5f7830079/webauth.module#L24)
method, which is probably what makes ini_set() in the other module create the warning.ini_set
(cookie_session.secure is already set to '1') from the stanford_ssp module, I'm not sure why it was placed there in the first place. Leaving it in, but wrapped around a condition that checks for cookie session first.Review By (Date)
1/6
Criticality
Associated Issues and/or People
Reference