Laravel-Backpack / community-forum

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

[Bug] #883

Closed ricoroma-coder closed 6 months ago

ricoroma-coder commented 6 months ago

Bug report

What I did

I just installed Backpack 6.7 in a project with Laradock.

Created a simple CRUD from Users, with all default options, but when I try to access any route, this modal shows:

image

That's my .env file:

image

What I expected to happen

Without docker, it works:

image

image

Is it a bug in the latest version of Backpack? Yes.

After I run composer update backpack/crud the bug is it still there

Backpack, Laravel, PHP, DB version

When I run php artisan backpack:version the output is:

PHP VERSION:

PHP 8.2.12 (cli) (built: Oct 24 2023 21:15:15) (ZTS Visual C++ 2019 x64) Copyright (c) The PHP Group Zend Engine v4.2.12, Copyright (c) Zend Technologies

LARAVEL VERSION:

11.0.6.0

BACKPACK PACKAGE VERSIONS:

backpack/basset: 1.3.0
backpack/crud: 6.7.0 backpack/devtools: 3.0.4 backpack/generators: v4.0.4 backpack/pro: 2.1.10 backpack/theme-tabler: 1.2.8

jcastroa87 commented 6 months ago

Hello @ricoroma-coder

This problem always happens about not correctly config "APP_URL", after config the correct URL, please clear cache:

php artisan config:clear
php artisan cache:clear
php artisan view:clear
php artisan basset:clear

If that does not work for you, please try to check the error log and run:

php artisan basset:check

Check permissions:

chmod -R 755 storage

chmod -R 755 vendor

chmod -R 644 bootstrap/caches

Finally you can follow other instructions in these issues:

https://github.com/Laravel-Backpack/community-forum/issues/552 https://github.com/Laravel-Backpack/community-forum/discussions/576 https://github.com/Laravel-Backpack/community-forum/discussions/674

Let me know if that works for you; thanks.

Cheers.

ricoroma-coder commented 6 months ago

Actually, I realize that I forgot to run php artisan storage:link

And now, it's working with Docker. But now doesn't work without it. XD

image

jcastroa87 commented 6 months ago

Im glad you solve the problem. I will close the issue, but please feel free to re-open or create a new one.

Cheers.