The file  is root/vendor/magento/framework/Encryption/Crypt.php

You need to go through the file and add the `@ `sign before any of the mcrypt calls.

Like

$this->_handle = mcrypt_module_open($cipher, '', $mode, '');

To

$this->_handle = @mcrypt_module_open($cipher, '', $mode, '');

 

Download the modified version of the file here.

credit Cadence Labs

Be kind to one another. Take care!

No Comments

Post A Comment