We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I got an error of ‘Function mcrypt_get_iv_size() is deprecated’ after run php artisan migrate and php artisan key:generate successfully.
php artisan migrate
php artisan key:generate
The text was updated successfully, but these errors were encountered:
Just change cipher in config/app.php can fix this error: from 'cipher' => MCRYPT_RIJNDAEL_128, to 'cipher' => 'AES-256-CBC',
cipher
config/app.php
'cipher' => MCRYPT_RIJNDAEL_128,
'cipher' => 'AES-256-CBC',
#ref
Sorry, something went wrong.
Change cipher (PHP 7.1 compatibility issue)
6aafe96
Srikanth-AD/Scrumwala#27 paperwork/paperwork#745
No branches or pull requests
I got an error of ‘Function mcrypt_get_iv_size() is deprecated’ after run
php artisan migrate
andphp artisan key:generate
successfully.The text was updated successfully, but these errors were encountered: