• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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