• Hi, Pleskians! We are running a UX testing of our upcoming product intended for server management and monitoring.
    We would like to invite you to have a call with us and have some fun checking our prototype. The agenda is pretty simple - we bring new design and some scenarios that you need to walk through and succeed. We will be watching and taking insights for further development of the design.
    If you would like to participate, please use this link to book a meeting. We will sent the link to the clickable prototype at the meeting.
  • Our UX team believes in the in the power of direct feedback and would like to invite you to participate in interviews, tests, and surveys.
    To stay in the loop and never miss an opportunity to share your thoughts, please subscribe to our UX research program. If you were previously part of the Plesk UX research program, please re-subscribe to continue receiving our invitations.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.

Resolved Missing Argon2i and Argon2id password hash algorithms since PHP 7.4.30

AvaDev

New Pleskian
Server operating system version
Debian 9.13
Plesk version and microupdate number
18.0.44 Update #2
The Argon2i and Argon2id password hash algorithms are missing since PHP 7.4.30 or latest PHP 8.1 shipped with Plesk?
We have warnings like
Code:
TYPO3\\CMS\\Core\\Crypto\\PasswordHashing\\Argon2iPasswordHash is not available
in our TYPO3 10.4 and 11.5 instances.

How to Downgrade to PHP 7.4.29 ?

Thanks
 
If anyone still has the issue on Debian 9 running, a Plesk update fixes it now:
Bash:
plesk installer update

Bash:
root@login:~# /opt/plesk/php/7.4/bin/php -r "echo password_hash('password', PASSWORD_ARGON2I);"
PHP Warning:  Use of undefined constant PASSWORD_ARGON2I - assumed 'PASSWORD_ARGON2I' (this will throw an Error in a future version of PHP) in Command line code on line 1
PHP Warning:  password_hash(): Unknown password hashing algorithm: PASSWORD_ARGON2I in Command line code on line 1

root@login:~# plesk installer update
...

root@login:~# /opt/plesk/php/7.4/bin/php -r "echo password_hash('password', PASSWORD_ARGON2I);"
$argon2i$v=19$m=65536,t=4,p=1$KVCidvhqy6N3Wd0Q/DzbKw$cQLtVZRUkptx8XG6is1KCDPs3KGHrU29B5hwUjAPaDY
 
Back
Top