├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── LICENSE ├── README.md ├── explorer.php └── repo.json /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behaviour: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behaviour** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. iOS] 28 | - Browser [e.g. chrome, safari] 29 | - Version [e.g. 22] 30 | 31 | **Smartphone (please complete the following information):** 32 | - Device: [e.g. iPhone6] 33 | - OS: [e.g. iOS8.1] 34 | - Browser [e.g. stock browser, safari] 35 | - Version [e.g. 22] 36 | 37 | **Additional context** 38 | Add any other context about the problem here. 39 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /tests/ 2 | .htconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Anonymous CDN 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # File-Explorer 2 | 3 | A File Manager with stunning design & astonishing develops, beautifully written in PHP, everything fused in a single file. 4 | 5 | :link: [Live Demo](https://web-file-explorer.herokuapp.com/) 6 | 7 | 8 | 9 | ## Installation 10 | 11 | * Just, upload / copy [`explorer.php`](https://github.com/webcdn/File-Explorer/raw/standalone/explorer.php) to the Root Folder on your Web Server 12 | * Check once the needful php configuration and set a new password to access 13 | * That's All, your dish is ready now 14 | 15 | **Optional:** You may rename it to `index.php`, you know what i meant for. 16 | 17 | 18 | 19 | ## Features 20 | 21 | * Fused in a single file, no other files needed (can be used on `localhost`) 22 | * Nice-looking user interface as pretty as a picture 23 | * Rapid response totally based on AJAX 24 | * Suits my aesthetics. More like Google Drive & less like Windows Explorer 25 | * Allows Drag / Drop or Browse File Uploads 26 | * Compress and Extract Directories (ZIP Files Only) 27 | * Simple Text / Code Editor 28 | * UI / UX Support 29 | * XSRF Protection 30 | 31 | 32 | ## Browse Support 33 | 34 | | Browser | Support | 35 | | ------------- | ------------------------ | 36 | | Safari | :heavy_check_mark: | 37 | | Firefox | :heavy_check_mark: | 38 | | Chrome | :heavy_check_mark: | 39 | | Opera | :heavy_check_mark: | 40 | | IE | :heavy_multiplication_x: | 41 | | Responsive | :heavy_check_mark: | 42 | 43 | 44 | ## Suggestions 45 | 46 | If you are thinking some good stuff/functionality that can be baked in the [File Explorer](https://github.com/webcdn/File-Explorer). Drop your the great ideas [here](https://github.com/webcdn/File-Explorer/issues/1). 47 | 48 | 49 | 50 | ## Issues 51 | 52 | If you find anything weird with [File Explorer](https://github.com/webcdn/File-Explorer), please let us know using the [GitHub Issues](https://github.com/webcdn/File-Explorer/issues). 53 | 54 | 55 | ## Author 56 | 57 | File Explorer is developed by [webcdn](https://github.com/webcdn) with help from the awesome [contributors](https://github.com/webcdn/File-Explorer/graphs/contributors). 58 | 59 | 60 | 61 | ## Donation 62 | 63 | If this projects helps you, You can give us a cup of coffee :coffee: 64 | 65 | [![Donate | Paypal](https://camo.githubusercontent.com/d5d24e33e2f4b6fe53987419a21b203c03789a8f/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f446f6e6174652d50617950616c2d677265656e2e737667)](https://gg.gg/contribute) 66 | 67 | :credit_card: [Donate here to support](https://gg.gg/contribute) 68 | 69 | 70 | ## License 71 | 72 | MIT License 73 | 74 | :copyright: Copyright 2019 - [WebCDN](https://github.com/webcdn) -------------------------------------------------------------------------------- /repo.json: -------------------------------------------------------------------------------- 1 | { 2 | "latest_ver": "2.0.5-beta", 3 | "latest_url": "https://raw.githubusercontent.com/webcdn/File-Explorer/standalone/explorer.php" 4 | } --------------------------------------------------------------------------------