Laravel-Backpack / community-forum

A workspace to discuss improvement and feature ideas, before they're actually implemented.
28 stars 0 forks source link

Devtools getting page expired 419 #1060

Open backpack-operations opened 4 days ago

backpack-operations commented 4 days ago

Hello Team,

I just received this on email:

"I bought Devtools about 2 weeks ago and decided to use this weekend.

However, when I start the Devtools I get the following error:

backpackforlaravel Screenshot 2024-06-30 at 08 07 15

"

karandatwani92 commented 3 days ago

Hey @backpack-operations

This happens because the APP_URL in the .env file is not correctly set.

Make sure the APP_URL in your .env file is correctly pointing to the URL you use to access your application in the browser, for example: http:127.0.0.1:8000 or http://something.test

If you are using php artisan serve to serve your application in http://127.0.0.1:8000, that's what you need to write in APP_URL.

Cheers