mirror of
https://github.com/prasathmani/tinyfilemanager.git
synced 2026-04-26 10:55:56 +03:00
[GH-ISSUE #989] Alternative for $_SESSION login #639
Labels
No labels
Feature
Feature
Is It Really an Issue?
Need More Info
Request
Security
bug
duplicate
enhancement
enhancement
help wanted
invalid
pull-request
question
suggestion
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/tinyfilemanager#639
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 @zidanpragata on GitHub (Mar 7, 2023).
Original GitHub issue: https://github.com/prasathmani/tinyfilemanager/issues/989
sometimes there are servers that don't work using "$_SESSION"
please add an alternative for this
like $_COOKIE or using SQLITE
@JaggedJax commented on GitHub (May 5, 2023):
I was able to put custom session handling inside the
config.phpand then set$use_auth = false;to disable the built in auth if the user is logged in through my system, and then enable auth as well as not even load the tinyfilemanager if the user isn't logged in my way. This sidesteps the built in auth handling and allows me to use my existing auth handling.