You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The login process fails with the following notice and error on the log:
[Sun Dec 31 15:54:42.587198 2023] [php7:notice] [pid 28228] [client 83.43.18.196:62249] PHP Notice: Trying to access array offset on value of type bool in /var/www/html/vault/gpg_auth.php on line 122
[Sun Dec 31 15:54:42.587471 2023] [php7:error] [pid 28228] [client 83.43.18.196:62249] PHP Fatal error: Uncaught Exception: get_key failed in /var/www/html/vault/gpg_auth.php:122\nStack trace:\n#0 /var/www/html/vault/gpg_auth.php(122): gnupg->addencryptkey()\n#1 /var/www/html/vault/gpg_auth.php(228): GpgAuth->stage0()\n#2 /var/www/html/vault/index.php(9): GpgAuth->login()\n#3 {main}\n thrown in /var/www/html/vault/gpg_auth.php on line 122
I think that the notice can be fixed removing the ['info'] key of line 122, but the error is still there.
pd: Is the private key passphrase the same than my user password?
Thanks
The text was updated successfully, but these errors were encountered:
Hello,
I had the same log, after changing the constructor in gpg_auth.php with this line, it works for me $this->gpg = new \gnupg(['home_dir' => '/tmp/.gnupg']);
Hello,
The login process fails with the following notice and error on the log:
[Sun Dec 31 15:54:42.587198 2023] [php7:notice] [pid 28228] [client 83.43.18.196:62249] PHP Notice: Trying to access array offset on value of type bool in /var/www/html/vault/gpg_auth.php on line 122
[Sun Dec 31 15:54:42.587471 2023] [php7:error] [pid 28228] [client 83.43.18.196:62249] PHP Fatal error: Uncaught Exception: get_key failed in /var/www/html/vault/gpg_auth.php:122\nStack trace:\n#0 /var/www/html/vault/gpg_auth.php(122): gnupg->addencryptkey()\n#1 /var/www/html/vault/gpg_auth.php(228): GpgAuth->stage0()\n#2 /var/www/html/vault/index.php(9): GpgAuth->login()\n#3 {main}\n thrown in /var/www/html/vault/gpg_auth.php on line 122
I think that the notice can be fixed removing the ['info'] key of line 122, but the error is still there.
pd: Is the private key passphrase the same than my user password?
Thanks
The text was updated successfully, but these errors were encountered: