mirror of
https://github.com/koel/koel.git
synced 2026-04-26 01:06:00 +03:00
[GH-ISSUE #368] issues while installing v2.2.0 #267
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#267
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 @grandvizier on GitHub (Jun 28, 2016).
Original GitHub issue: https://github.com/koel/koel/issues/368
I ran into a few issues during the install that took a bit of debugging to work through, only to determine that v2.2.0 isn't functional at this time.
These first points are simply things that might make other peoples install process a little smoother:
npm&composerwere listed in the Server Requirements section.npm installbecause the first run through withphp artisan koel:initmade that error hard to find.This is were I had specific version issues:
resources/assets/sass/vendor/_plyr.scss,$plyr-control-color-hoverwasn't defined at line 289. To get passed this I just modified the if-clauses around line 39. Then after running the init command again, I was finally able to load a login page.this.player.setVolume is not a function. At this point I reverted to the branch2.0and everything is now working.Note: since I still had the
.envfile setup, I was usingphp artisan koel:initto re-initialize after code changes. I suppose it might be possible thatnpm install & composer installas per the release instructions may have had different results.@phanan commented on GitHub (Jun 29, 2016):
Any reason why it's 2.2.0 and not the latest stable 2.2.1? Before v2.2.1,
plyrwas required as^1.5.13and later minor versions from this package had backward incompatibilities that broke Koel. In v2.2.1, we specify1.5.xto eliminate these problems.For the
nodejssymlink, I don't think that's a Koel-issue per-se, but yours is an edge-case (maybe you've run into something like http://stackoverflow.com/questions/18130164/nodejs-vs-node-on-ubuntu-12-04?)