mirror of
https://github.com/koel/koel.git
synced 2026-04-25 08:46:00 +03:00
[GH-ISSUE #32] Upon redirect to the note symbol, Apache will say "Not Found" #27
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#27
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 @tsubasamanda on GitHub (Dec 14, 2015).
Original GitHub issue: https://github.com/koel/koel/issues/32
Upon placing the repo into Apache and setting it up, attempting to browse to the root, it will redirect to the music symbol like it's supposed to, but Apache won't display the music browser.
@whachoe commented on GitHub (Dec 14, 2015):
yup. i encounter the same problem: The requested URL /♫ was not found on this server.
@vhanla commented on GitHub (Dec 14, 2015):
Try setting a virtual host for it, or modify .htaccess
RewriteBase /to the correct path e.g.RewriteBase /koel/however you will notice an empty page since the project's views need to be modified too, because there is no relative url for css or js scripts, e.g.resources/views/index.blade.phpfile you can clearly notice it is not compatible with subdirectories in url path.@whachoe commented on GitHub (Dec 14, 2015):
That was indeed the problem. I didn't have
AllowOverride Allin my virtual host config so the .htaccess file was not parsed.Thanks!
@tsubasamanda commented on GitHub (Dec 14, 2015):
What would I need to do to fix this problem?
@whachoe commented on GitHub (Dec 14, 2015):
Try to put something like this in /etc/apache2/sites-enabled
@vukidrock commented on GitHub (Dec 22, 2015):
@vhanla Hi, I was edited the
resources/view/index.blade.phpandresources/view/auth/login.blade.phpwith URL of app folder from<form method="post" action="/login"to<form method="post" action="koel/login", the login page show up with informations fully (logo, form) but when I click to login button, the console log show errors, something like that:check #134 and help me