Upgrade from 2.1.1 to beta.20:
1st issue: got a "Trying to access array offset on value of type null" message twice during the last step of "writing configuration" and also at "Finishing site setup".
2nd issue: now have this error when navigating to home page.
/opt/lampp/htdocs/rdqtest/rdqupg/vendor/laravel/framework/src/Illuminate/Encryption/Encrypter.php
protected $cipher;
/**
* Create a new encrypter instance.
*
* @param string $key
* @param string $cipher
* @return void
*
* @throws \RuntimeException
*/
public function __construct($key, $cipher = 'AES-128-CBC')
{
$key = (string) $key;
if (static::supported($key, $cipher)) {
$this->key = $key;
$this->cipher = $cipher;
} else {
throw new RuntimeException('The only supported ciphers are AES-128-CBC and AES-256-CBC with the correct key lengths.');
}
}
/**
* Determine if the given key and cipher combination is valid.
*
* @param string $key
* @param string $cipher
* @return bool
*/
public static function supported($key, $cipher)
{
$length = mb_strlen($key, '8bit');
return ($cipher === 'AES-128-CBC' && $length === 16) ||
($cipher === 'AES-256-CBC' && $length === 32);
}
/**
* Create a new encryption key for the given cipher.
Arguments
"The only supported ciphers are AES-128-CBC and AES-256-CBC with the correct key lengths."