-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
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
Error with missing Access Support Entry #2267
Comments
@marvinroman I wasn't able to reproduce this using the Herd setup. I'm having some configuration issues so can't test the local docker setup right now, but am wondering if it's related to it's setup. |
I was assuming it's a lack of data in the database when deployed with just the default seeders. |
@marvinroman, which seeder did you run? |
That was the mistake. I thought that the devSeeder had been run on the database. Sorry for wasting time. |
You shouldn't have to run the DevSeeder to have the site operational, although you wouldn't have any test accounts and etc. You should run at least the DatabaseSeeder though. Which you can do with one of the following methods: # After a new install or clearing the database
php artisan db:seed
# or explicitly
php artisan db:seed --class=DatabaseSeeder
# To reset the database
php artisan migrate:fresh --seed
# Or explicitly
php artisan migrate:fresh --seeder DatabaseSeeder I'll update the README with some info. |
That is interesting because I did have the test accounts which assumes that the |
Yes that's very possible, or maybe a migration just needed to be run. Whatever the case, I'm glad that it's all working now. |
Prerequisites
Describe the bug
Page https://platform.test/en/settings/access-needs gets a 500 error when signed in as individual user.
Fails to get Sign Language Entry in
App\Http\Controllers\SettingsController
.To Reproduce
Expected behavior
No response
Screenshots
Details
Additional context
No response
The text was updated successfully, but these errors were encountered: