Dev Goyal
ac3dd478f5
fix hostinger's devil signature making it a false positive on hosting antivirus scanner ( #1112 )
...
Co-authored-by: Prasath Mani <prasathmani@users.noreply.github.com >
2024-10-14 09:27:55 +05:30
Prasath Mani
01cfb5d8ac
UI cosmetic changes
2024-10-14 09:25:51 +05:30
Joshua Myers
94b62544bd
Added Additional Delete Link in File Viewer View ( #1141 )
...
* Added Additional Delete Link in File Viewer View
I found myself clicking into specific files to see them larger, then wanting to delete them, only to find I had to go back to another screen to delete them.
* Changed Reference to Invalid Variable
2024-10-14 09:11:17 +05:30
Rolf Allard van Hagen
1042994a60
Save $CONFIG to config.php if it exists ( #1144 )
...
Writes $CONFIG variable to the main plugin file, unless there is a config.php
2024-10-14 09:09:03 +05:30
Jabed Bhuiyan
3716af20a2
Dynamic Browser Tab Title Handling Based on File Context ( #1202 )
...
* Update tinyfilemanager.php
Now it will show the filename as browser tab title so that user can easily identify which file is opened on which tab.
* Update tinyfilemanager.php
remove lines 3722 and 3734 and add this directly in 3733 as per the suggestion of @ner00
* Update tinyfilemanager.php
extra trailing space removed
2024-10-14 09:06:19 +05:30
Vadászi Attila
8d953bf0f9
Fix multiple download and browse while downloading ( #1242 )
2024-10-14 09:05:03 +05:30
Randy Garrison
0f58c2ca65
Add powershell file extension to text format for opening in editor. ( #1228 )
2024-09-10 03:39:29 +05:30
Caleb Mazalevskis
b602dcd172
Fix typos. ( #1214 )
2024-08-04 12:08:43 +05:30
Daniel Dias Rodrigues
1bcc240119
Added missing translatable string. Update pt-br translation. ( #1204 )
2024-07-05 04:43:26 +05:30
Awais
8b330b75a4
Update default font size to in jQuery initialization ( #1200 )
2024-06-24 08:13:07 +05:30
Prasath Mani
e27e1abeb4
remove email address
2024-06-06 09:20:20 +05:30
Fannie MC
a4d96e0eaf
Add JSON Parse Error Handling in Upload Script ( #1196 )
...
* Add JSON Parse Error Handling in Upload Script
* Update tinyfilemanager.php
* Update tinyfilemanager.php
2024-05-31 09:45:09 +05:30
Prasath Mani
843e240757
Update tinyfilemanager.php
2024-05-28 06:50:00 +05:30
Prasath Mani
ecec756b71
Update tinyfilemanager.php
2024-05-28 04:51:37 +05:30
Daniel Dias Rodrigues
8366e1bc29
Expanded the list of files recognized as compressed ( #1193 )
2024-05-27 09:29:54 +05:30
Ijor Tengab
d8fceac7dd
Fix #963 ( #969 )
2024-05-27 09:27:33 +05:30
BANKA2017
a1ae0fa729
fix : #52 Does not respect directory tree while uploading a folder containing sub-folders ( #1056 )
2024-05-01 10:01:27 +05:30
Torusrxxx
ca4b1b1743
Disable excluded extension name from viewing ( #1151 )
2024-03-25 11:09:24 +05:30
Michele Locati
8e87afae5b
Fix wrong phpdoc of print_external() ( #1091 )
2023-09-14 15:05:36 +05:30
Tony Ganesh Prajapati
43063e4746
Update tinyfilemanager.php ( #1086 )
...
changing String "Filter" to "Search"
2023-08-28 12:29:45 +05:30
paponius
eb8f3d80bc
random_bytes() only for >PHP7 ( #1066 )
2023-06-29 07:31:24 +05:30
ner0
f380478197
Typo & make text bold ( #1042 )
...
* Fix typo
* Make text bold for consistency
Also dropping the plural 's'
2023-05-16 08:17:43 +05:30
divinity76
f7a2f77008
reduce feof() calls ( #1041 )
...
micro-optimization: when doing large file copies, this will reduce the number of feof() calls. for example, if copying 100MB, this will save approximately 25,599 feof() calls (255 feof() calls for every MB) - also feofs() may do an actual syscall, and syscalls are relatively expensive/time-consuming.
2023-05-15 09:53:25 +05:30
Bryan
dabc4ea36e
Fix highlightjs_style in config.php being ignored ( #1039 )
...
highlightjs_style variable is being used before config.php gets parsed, so preview style is always vs. This PR fixes that by moving config.php parsing to be before external resource calls.
2023-05-11 09:55:15 +05:30
ner0
7ec19c1659
Resize preview image and implement zoom in/out ( #1036 )
...
* Resize preview image and implement zoom in/out
* Remove redundant class name
2023-05-03 14:11:59 +05:30
DannyDaemonic
8486c7a240
Add configurable path display modes for better privacy and clarity ( #1034 )
2023-04-26 20:46:52 +05:30
xololunatic
8194249b66
login (Redirecting to Main domain of website instead of tfm.php) fix ( #1031 )
...
When logged in it takes to the website's main URL. For example, if I have tfm in www.example.com/tfm/index.php (index.php is tfm) then after logging in it redirects to www.example.com and then have to press back on the browser then it takes to www.example.com/tfm/index.php
2023-04-24 07:00:47 +05:30
Caleb Mazalevskis
da77df785a
Fix typo. ( #1028 )
2023-04-23 19:59:23 +05:30
Micha Ober
00541fc469
Fix upload of existing files ( #1026 )
2023-04-21 19:21:31 +05:30
divinity76
f6a93653be
use stream_copy_to_stream ( #1014 )
...
* use stream_copy_to_stream
it's simpler, and should be faster.
For example, stream_copy_to_stream can use sendfile ( https://man7.org/linux/man-pages/man2/sendfile.2.html ) on operating systems supporting it, which is faster and use less RAM than fread()+fwrite() (because it avoids copying data to/from userland, doing the copy entirely in-kernel~)
* fix loop early return, and workaround bug
* use feof
ref https://github.com/prasathmani/tinyfilemanager/issues/1016#issuecomment-1502081506
2023-04-21 10:05:45 +05:30
Micha Ober
85f35bc28f
Check if posix_getpwuid/posix_getgrgid calls were successful ( #1023 )
2023-04-21 10:03:20 +05:30
ner0
6a6eb8abec
Prevent logout issue after page was cached ( #1004 )
...
Logout may not work otherwise, browser reloads cached page from disk instead of sending GET request ?logout=1 to server.
2023-03-31 04:16:23 +05:30
Prasath Mani
bf024c7c84
Update tinyfilemanager.php
2023-03-17 10:22:19 +05:30
Prasath Mani
e071b2372c
Add External CDN resources configurable
2023-02-22 07:16:25 +05:30
fwiesweg
ba1b499d2b
Allow configuration for strict CSPs and GDPR ( #971 )
2023-02-22 06:25:35 +05:30
Suyadi
6775bcb176
AceEditor: hide vertical ruler ( #973 )
2023-02-22 06:24:00 +05:30
Alessandro Marinuzzi
4b2aef8737
Added extensions and removed the duplicated entries ( #968 )
...
added new extensions used in different linux/windows environments and removed duplicate entries
2023-02-16 20:54:55 +05:30
Michael Gebetsroither
1eed63cf1b
make upload chunk size configureable ( #967 )
...
nginx supports only 1MB per default
2023-02-16 16:18:40 +05:30
minghongg
cddd7eaab0
Deploy path traversal fix ( #953 )
...
Co-authored-by: root <root@chevaliers.lan >
2023-01-25 11:46:20 +05:30
Dmitry Efremov
dd1ba6795c
Fixes ajax ability to handle requests when auth disabled ( #952 )
2023-01-25 08:23:45 +05:30
Dmitry Efremov
9c4d30d7b5
Fixes couple issues with confirmDailog ( #951 )
...
* Fixes naming for confirmDailog id, otherwise dialog won't work
* Removes destroying form as browser complains that it can't process request from disconnected form
2023-01-25 08:22:27 +05:30
Prasath Mani
dc529dd590
Fix save settings not working #947
2023-01-22 02:06:14 +05:30
fbotp
69ccd952fc
Bug fix: Delete confirm dialog will work wrong aflter cancel. ( #942 )
...
* Bug fix: Only delete first file/directory when clicking the delete button multiple times and canceling.
* Add variable name for delete dialog
2023-01-19 21:41:48 +05:30
Catalin
69495db9b4
Subfolder links fix ( #945 )
...
Download and Direct link problems when using with a subfolder, possible simple solution.
2023-01-19 21:41:00 +05:30
Prasath Mani
789b98f136
Download and Direct link problems when using with a subfolder. #907
2022-12-03 06:17:55 +00:00
Prasath Mani
8f2f65b9fc
Bug Fix #904 , #903 , #900
2022-12-02 02:43:24 +00:00
武志伟
31b988db79
Translation supplement ( #902 )
...
* update zh-cn lang
* Translation supplement
* update zh-cn lang
2022-11-30 16:40:57 +05:30
Nguyễn Trần Chung
5a00707890
Update tinyfilemanager.php ( #898 )
2022-11-27 20:59:39 +05:30
muink
cfb9a57d5e
Fix the problem of login failure when $root_url is defined ( #896 )
...
Fix the problem that `FM_ROOT_URL` and `$_SERVER['REQUEST_URI']` are repeated, causing login redirection to fail when `$root_url` is defined
2022-11-26 18:52:34 +05:30
Prasath Mani
e30ec1dfd2
update download buffer and fix #893
2022-11-25 07:00:19 +00:00