I'm triying to install Magento 2.4.2 open source on a Centos 8 server RHEL version but I have a little problem... I put the screenshot in attached files, thanks you for just ideas of search...
Asked
Active
Viewed 845 times
0
1 Answers
0
This same error has an excellent answer in the StackExchange post This is not implemented, as it is not possible to implement Argon2i with acceptable performance in pure-PHP.
This error occurs with Magento 2.4.2 when php does not include the
sodiumphp extension.You can check if this extension is installed with
php -i | grep sodium sodium support => enabled libsodium headers version => 1.0.16To fix this problem install / activate the
sodiumphp extension.For Xampp in
php.iniadd (or uncomment)extension=sodium;Or
sudo apt install php-libsodiumNOTE the supported PHP version for Magento 2.4 is PHP 7.4
harrymc
- 455,459
- 31
- 526
- 924
-
yes it was that, I installed sodium and it works. Thanks you. – cedler Jun 20 '21 at 18:57
