{"id":19703016,"url":"https://github.com/muink/luci-app-tinyfilemanager","last_synced_at":"2025-04-29T14:30:39.662Z","repository":{"id":62722815,"uuid":"560829456","full_name":"muink/luci-app-tinyfilemanager","owner":"muink","description":"LuCI Tiny File Manager: Web based File Manager in PHP","archived":false,"fork":false,"pushed_at":"2025-03-06T15:18:10.000Z","size":5947,"stargazers_count":35,"open_issues_count":4,"forks_count":10,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-05T17:43:54.297Z","etag":null,"topics":["fantastic-package","filemanager","luci","luci-app","luci-app-tinyfilemanager","openwrt","php","router","self-hosted","tinyfilemanager"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/muink.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-11-02T11:10:57.000Z","updated_at":"2025-03-24T23:36:31.000Z","dependencies_parsed_at":"2023-02-14T15:01:22.977Z","dependency_job_id":"3bb4ef41-8a15-4139-a590-14e768e46d84","html_url":"https://github.com/muink/luci-app-tinyfilemanager","commit_stats":null,"previous_names":[],"tags_count":33,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/muink%2Fluci-app-tinyfilemanager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/muink%2Fluci-app-tinyfilemanager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/muink%2Fluci-app-tinyfilemanager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/muink%2Fluci-app-tinyfilemanager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/muink","download_url":"https://codeload.github.com/muink/luci-app-tinyfilemanager/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251518740,"owners_count":21602204,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["fantastic-package","filemanager","luci","luci-app","luci-app-tinyfilemanager","openwrt","php","router","self-hosted","tinyfilemanager"],"created_at":"2024-11-11T21:16:45.343Z","updated_at":"2025-04-29T14:30:39.656Z","avatar_url":"https://github.com/muink.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# LuCI Tiny File Manager\n\u003e [TinyFileManager][] is web based file manager and it is a simple, fast and small file manager with a single file, multi-language ready web application for storing, uploading, editing and managing files and folders online via web browser. The Application runs on PHP 5.5+, It allows the creation of multiple users and each user can have its own directory and a build-in support for managing text files with cloud9 IDE and it supports syntax highlighting for over 150+ languages and over 35+ themes.\n\n### Screenshots\n\n![demo](example/demo.png \"demo\")\n\n\u003cdetails\u003e\u003csummary\u003eReal installation\u003c/summary\u003e\n\u003cimg src=\"example/root.png\"/\u003e\n\u003cimg src=\"example/localfeeds.png\"/\u003e\n\u003cimg src=\"example/pictute.png\"/\u003e\n\u003cimg src=\"example/video.png\"/\u003e\n\u003c/details\u003e\n\n### How to install\n\n1. Goto ~~[releases](https://github.com/muink/luci-app-tinyfilemanager/tree/releases)~~ [here](https://fantastic-packages.github.io/packages/)\n2. Download the latest version of ipk\n3. Login router and goto **System --\u003e Software**\n4. Upload and install ipk\n5. Reboot if the app is not automatically added in page\n6. Goto **NAS --\u003e Tiny File Manager**\n7. Default username/password: admin/admin and user/12345.\n\n### Uploading limit\n\n**If you need to change the upload limit for Tiny File Manager**\n\nEdit [config.js](htdocs/luci-static/resources/view/tinyfilemanager/config.js) before build\\\nEdit `/www/luci-static/resources/view/tinyfilemanager/config.js` in router\n\n```javascript\no = s.option(form.Value, 'max_upload_size', _('Max upload size (MBytes)'));\no.datatype = \"and(uinteger,max(2048))\";  //limit to 2048MB\n```\n\nAnd edit [Makefile](Makefile) before build\n\n```makefile\ntotal_size_limit=??        #Total size of multiple files\nsingle_size_limit=??       #Max single file size\notime_uploads_limit=??     #Max count of simultaneous uploads\n```\n\nAnd edit `/etc/php.ini` in router\n\n```ini\npost_max_size = ??          ;Total size of multiple files\nupload_max_filesize = ??    ;Max single file size\nmax_file_uploads = ??       ;Max count of simultaneous uploads\n```\n\n### Build\n\n- Compile from OpenWrt/LEDE SDK\n\n```\n# Take the x86_64 platform as an example\ntar xjf openwrt-sdk-21.02.3-x86-64_gcc-8.4.0_musl.Linux-x86_64.tar.xz\n# Go to the SDK root dir\ncd OpenWrt-sdk-*-x86_64_*\n# First run to generate a .config file\nmake menuconfig\n./scripts/feeds update -a\n./scripts/feeds install -a\n# Get Makefile\ngit clone --depth 1 --branch master --single-branch --no-checkout https://github.com/muink/luci-app-tinyfilemanager.git package/luci-app-tinyfilemanager\npushd package/luci-app-tinyfilemanager\numask 022\ngit checkout\npopd\n# Select the package LuCI -\u003e Applications -\u003e luci-app-tinyfilemanager\nmake menuconfig\n# Upgrade to new version Tiny File Manager (optional)\n1. modify the tag VERSION='2.4.7' to new version in makenew.sh\n2. run makenew.sh to upgrade current version (if it worked)\n# Start compiling\nmake package/luci-app-tinyfilemanager/compile V=99\n```\n\n### Contributors\n\n- [prasathmani](https://tinyfilemanager.github.io)\n- [muink](https://github.com/muink)\n\n[TinyFileManager]: https://github.com/prasathmani/tinyfilemanager\n\n### License\n\n- This project is licensed under the [GPL-3.0](https://www.gnu.org/licenses/gpl-3.0.html)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmuink%2Fluci-app-tinyfilemanager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmuink%2Fluci-app-tinyfilemanager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmuink%2Fluci-app-tinyfilemanager/lists"}