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.
No Comments