ItSolutionStuff.com

Solved - No Application Encryption Key Has Been Specified - Laravel

By Hardik Savani • April 16, 2024
Laravel

Hi Dev,

This tutorial will give you an example of no application encryption key has been specified. laravel. This tutorial will give you a simple example of laravel no application encryption key has been specified. We will look at an example of laravel 500 error no application encryption key has been specified. In this article, we will implement a laravel ajax no application encryption key has been specified.

You can use this solution with laravel 6, laravel 7, laravel 8, laravel 9, laravel 10 and laravel 11 versions.

Few days ago i was working on very old laravel app and i installed it. Then i simply run app and get "no application encryption key has been specified" error. But i know how to fix it. i need to generate app key using artisan command. so if you found following error then you can use below solution.

"no application encryption key has been specified"

Solution:

You need to generate app key using laravel artisan command. let's run below command.

php artisan key:generate

Then you will see on following .env file with updated value on APP_KEY variable.

.env

APP_KEY=base64:P9r5RXnghdhnhohddh2HDhBkPGnbLClYiRLx02QG0V6Tw=

Now, you can run your laravel app and it will works.

I hope you get it.

It can help you...

Tags: Laravel
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

How to Use Google Translator in Laravel?

Read Now →

Laravel Call Function from Same Controller Example

Read Now →

Laravel Collection Check If Key Exists Example

Read Now →

How to Convert Collection to JSON in Laravel?

Read Now →

How to Generate App Key in Laravel?

Read Now →

How to Select Specific Columns in Laravel Eloquent Model?

Read Now →

How to Get All Models in Laravel?

Read Now →

How to Get Columns Names from Model in Laravel?

Read Now →

Laravel Ajax PUT Request Example Tutorial

Read Now →

How to Setup Dynamic Cron Job(Task Scheduling) in Laravel?

Read Now →

How to Get IP Address in Laravel?

Read Now →