1

With xampp I made a virtual host named leeromgeving.dev. But when I enter this in my bar its shows this. enter image description here

It worked before, I don't know what is causing this. If I need to provide some code. Please inform me.

Thanks for the answers but unfortunately none of them worked. This is what I get now after typing this in enter image description hereenter image description here

Rainier laan
  • 1,101
  • 5
  • 26
  • 63
  • See Here https://laravel.io/forum/06-04-2015-cipher-error and https://stackoverflow.com/questions/39693312/the-only-supported-ciphers-are-aes-128-cbc-and-aes-256-cbc-with-the-correct-key – D Coder Jun 16 '17 at 11:40
  • Check that you have a welcome.blade.php in your views directory – Nerea Jun 16 '17 at 12:35

2 Answers2

0

you have to insert the APP_KEY in your env file, use this command to generate a new Application key

php artisan key:generate
RAUSHAN KUMAR
  • 5,846
  • 4
  • 34
  • 70
0

Try Following Steps

-> delete .env file
-> copy .env.example .env
-> php artisan key:generate
-> remove env() in 'key' in config/app.php

or See https://laracasts.com/discuss/channels/laravel/the-only-supported-ciphers-are-aes-128-cbc-and-aes-256-cbc-with-the-correct-key-lengths

D Coder
  • 572
  • 4
  • 16