mirror of
https://github.com/prasathmani/tinyfilemanager.git
synced 2026-04-26 19:05:54 +03:00
[GH-ISSUE #233] File on uploading is not getting uploaded #169
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#169
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 @ersaurabh101 on GitHub (Sep 28, 2019).
Original GitHub issue: https://github.com/prasathmani/tinyfilemanager/issues/233
I am able directly login in my docs folder as i set the root path as -
$root_path = $_SERVER['DOCUMENT_ROOT'].'/es'.'/docs';but when i am uploading file in folder named '44' [ image,txt ] it shows the uploading loader and the tick icon but the file is not uploaded.
@prasathmani commented on GitHub (Sep 28, 2019):
update the root path,
$root_url = 'es/docs';and check if you have write permissions to upload the file
@ersaurabh101 commented on GitHub (Sep 29, 2019):
Done as guided, still files are not getting uploaded.
$root_url = 'es/docs';0755 permission to folders and this php script
@prasathmani commented on GitHub (Oct 1, 2019):
file is not uploading due to file tmp_name is empty, change the
upload_max_filesizeand check.https://stackoverflow.com/questions/30358737/php-file-upload-error-tmp-name-is-empty
@quasarnew commented on GitHub (Jan 7, 2020):
I have the same issue!
I checked the directory and the permissions (755) but still, it is not working.
@prasathmani commented on GitHub (Jan 9, 2020):
change the
upload_max_filesizeinphp.ini@infernostudiosmtl commented on GitHub (Oct 23, 2020):
see #314 for my solution - hope it helps