Scrumwala icon indicating copy to clipboard operation
Scrumwala copied to clipboard

Function mcrypt_get_iv_size() is deprecated

Open JKChen opened this issue 7 years ago • 1 comments

I got an error of ‘Function mcrypt_get_iv_size() is deprecated’ after run php artisan migrate and php artisan key:generate successfully.

JKChen avatar Aug 30 '17 03:08 JKChen

Just change cipher in config/app.php can fix this error: from 'cipher' => MCRYPT_RIJNDAEL_128, to 'cipher' => 'AES-256-CBC',

#ref

JKChen avatar Aug 30 '17 04:08 JKChen