mirror of
https://github.com/koel/koel.git
synced 2026-04-25 16:56:02 +03:00
[GH-ISSUE #581] Can't login 500 Internal Server Error at POST me #420
Labels
No labels
Authentication
Dependencies
Documentation
Feature Request
Flac
Help Wanted
Installation/Setup
Integration
Mobile
PR Welcome
Pending Release
Performance
Playlist
S3
Search
Sync
[Pri] Low
[Pri] Normal
[Status] Keep Open
[Status] Needs Author Reply
[Status] Needs Review
[Status] Stale
[Status] Will Implement
[Type] Blessed
[Type] Bug
[Type] Duplicate
[Type] Enhancement
[Type] Help Request
[Type] Question
[Type] Task
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/koel-koel#420
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @fanat98 on GitHub (Apr 24, 2017).
Original GitHub issue: https://github.com/koel/koel/issues/581
Hey, I just installed koel v3.6.2 on Ubuntu 16.04, use PHP 7.0 and Nginx
After enter my email and PW is keeping me on the login page
does do nothing.
Firebug Network: 500 Internal Server Error and tab HTML:
but i dont use sqlite, DB_CONNECTION=mysql
Can you please help? Thanks!
@mtuchi commented on GitHub (May 2, 2017):
In my case i was missing the
APP_KEYand theJWT_SECRETif you used
php artisan koel:init. Then these key are suppose to be generated for youIf not then make sure the following are correct,
1. Database connection name, which corresponds to the database driver.
2. APP_KEY. use
php artisan key:generate.3. JWT_SECRET. use
php artisan koel:generate-jwt-secret.@fanat98 commented on GitHub (May 2, 2017):
Hi @mtuchi Thank you for your answer.
mysqlAPP_KEYandJWT_SECRETare also correct.I suspect that, something with nginx config is not correct, because when I start it with
php artisan servethen works :(.@nikohd12 commented on GitHub (May 4, 2017):
@fanat98
Try changing your settings in your .env, change it to mysql.
I also think there's some misconfiguration from your nginx config. Just use the one's provided in nginx.conf.example, if you're going to host it locally, change the 127.0.0.1:9000 to php-fpm.sock
@fanat98 commented on GitHub (May 4, 2017):
HI @nikojaro Thank you for answer.
I use already mysql.
I fixed it. The problem was the port, it was :8081, i changed it to :80 and now it is fine.