mirror of
https://github.com/koel/koel.git
synced 2026-04-26 09:15:59 +03:00
[GH-ISSUE #512] Can't login anymore, php memory exhausted #360
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#360
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 @jkronen on GitHub (Jan 4, 2017).
Original GitHub issue: https://github.com/koel/koel/issues/512
Hey, I just installed koel v3.4.1 on debian 8, loaded it with a few songs and it worked fine.
But after adding my whole library with over 24k songs, I now can't login anymore (doesn't matter it I access via nginx or directly with local IP).
The nginx error log just shows this error:
I read in another Issue about increasing the php memory limit, but I don't know in which file to set the
ini_set('memory_limit', '64M');.Thank you in advance,
Jan
@BernardGoldberger commented on GitHub (Jan 5, 2017):
The filename is php.ini and should be located in the php bin folder.
@jkronen commented on GitHub (Jan 5, 2017):
The php.ini srts the global memory limit. Isn't it possible to set the limit only for this application?
@phanan commented on GitHub (Jan 5, 2017):
You can try adding the line
ini_set('memory_limit', '64M');on top of the rootindex.phpfile. However, this doesn't guarantee to be working – it depends on your PHP installation. Maybe I'll introduce this as a setting in the next release.@jkronen commented on GitHub (Jan 5, 2017):
I had to set it to 256M, but then it works. Thank you!