v2026
has config() been replaced or altered as well?
$encKey = Config("ENCRYPTION_KEY");
now returns NULL
woud this be the replacement: SessionId() . ServerVar("ENCRYPTION_KEY");
v2026
has config() been replaced or altered as well?
$encKey = Config("ENCRYPTION_KEY");
now returns NULL
woud this be the replacement: SessionId() . ServerVar("ENCRYPTION_KEY");
No, there is no change in Config(). However, ENCRYPTION_KEY is now an environment variable in .env.xxx.local, so you need to get it by ServerVar("ENCRYPTION_KEY") or EnvVar("ENCRYPTION_KEY") .