Skip to content

Latest commit

 

History

History
77 lines (60 loc) · 2.32 KB

readme.md

File metadata and controls

77 lines (60 loc) · 2.32 KB

CodeEditor

Hey Folks this is Simple Web Based Code Editor , No Need To use Nano or vim for your server now. Simply put it in the public Directory and enjoy.

How To

  1. To Go Change Permissions to Read Only Mode.
  • Goto -> src/php/index.php

  • line No *** 8 ***

 $read_only=false;

Change to true , by default false

 $read_only=true;
  1. To Go Change Any Specific Permissions.
  • Goto -> src/php/index.php

  • line No *** 10 *** , Do Changes here

$config = array(
    "allow_file_create" => true,
    "allow_folder_create" => true,
    "allow_folder_delete" => true,
    "allow_file_delete" => true,
    "allow_file_rename" => true,
    "allow_folder_rename" => true,
    "allow_read_folder" => true,
    "allow_read_file" => true,
);

Features & Todo

  • Edit And Save File (supported Desktop & Mobile)
  • upload Mutiple Files (Drag & Drop | Large File Supported upto 9gb)
  • Download Files / folder
  • Delete Files
  • create new file
  • create new folder
  • In-built Shell
  • add Tabs
  • rename file
  • Read OnlyMode + Specific Rights
  • unzip files
  • mobile fileupload
  • Settings
  • Auth

Attribution

icons by icon archive
File icons created by Dimitry Miroliubov - Flaticon
Folder icons created by kumakamu - Flaticon
Large File Upload - fcup on by lovefc
Terminal - p0wny-shell by flozz

logs -updates what ever 😃

-- added Terminal (Feb 15 2023)
-- Added Reload Button - Fixed Bugs (Feb 20 2023)
-- Added Syntax Highlighting - Fixed Bugs (Feb 26 2023)
-- Added Tabs Support & Created Manifest (March 29 2023)
-- Added Rename File & Folder Download (March 29 2023)
-- Added ReadOnlyMode Or Specify Specific rights (March 29 2023)
-- Added Setting , More Themes & -Fixed Bugs (March 30 2023)
-- Settings Completed & Theme fixed -Fixed Bugs (March 31 2023)