FaiezWaseem / filemanager

Hey Folks this is a simple php based File Manager . Which supports file upload , delete , copy , download etc features . Simply put it in the public directory of your server and Enjoy

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SIMPLE PHP FILE MANAGER

hey folks this is a very simple easy to use php based file manager.

Config

  • edit index.php
  • To add absolute url change the path at line 61 variable $web_url
  • To change root path change at line 64 $root_path
  • To Go into read mode only edit line 70 to true
  • To enable auth edit line 70 to true
  • by default
  • username = admin
  • password = admin
  • To change username & password goto line 72
$web_url = "https://example.com";  //  line 61
// Root path for file manager 
// use absolute path of directory i.e: '/var/www/folder' or $_SERVER['DOCUMENT_ROOT'].'/folder'
$root_path = $_SERVER['DOCUMENT_ROOT']; // line 64 

$read_only = false; // line 70
$auth = false; // line 71

TODO

  • Upload file (upto 9gb)
  • Multiple File Uploads
  • Edit Text Files
  • create new Folders
  • create new Files
  • in-built text editor
  • Delete Folder/Files
  • Dark mode
  • File/Folders Icon
  • File Download
  • Grid Layout
  • Rename Folder/file
  • Copy file
  • Copy Folder
  • AUTH / READONLY MODE
  • Play Videos
  • List Layout
  • Unzip
  • move Folder/file
  • PDF Viewer
  • PPT VIEWER

ISSUES

  • file with space remove error (fixed)

About

Hey Folks this is a simple php based File Manager . Which supports file upload , delete , copy , download etc features . Simply put it in the public directory of your server and Enjoy


Languages

Language:PHP 56.8%Language:JavaScript 25.6%Language:CSS 11.8%Language:HTML 5.8%