ini_set(): Session ini settings cannot be changed after headers have already been sent search →
SYSTEMPATH/Session/Session.php at line 283
276 /**
277 * Configuration.
278 *
279 * Handle input binds and configuration defaults.
280 */
281 protected function configure()
282 {
283 ini_set('session.name', $this->config->cookieName);
284
285 $sameSite = $this->cookie->getSameSite() ?: ucfirst(Cookie::SAMESITE_LAX);
286
287 $params = [
288 'lifetime' => $this->config->expiration,
289 'path' => $this->cookie->getPath(),
290 'domain' => $this->cookie->getDomain(),