Vip Filemanager

When you distribute a file-manager script to your audience, two questions matter most:

  1. “Can I install it in seconds without extra dependencies?”
  2. “Does it phone home or log my activity?”

Vip FileManager scores a perfect yes / no on those questions:

FeatureBenefit
Single-file deployment (< 300 KB)Upload one .php file – no Composer, no database.
Log-free by designScript never writes user activity, IPs or analytics to disk.
Open-source MIT licenceAudit the code or fork it for your own project.
Optional authenticationTurn the login wall on/off with $use_auth = true/false.
Dark / light switch$CONFIG = '{"theme":"dark"}' gives an instant dark UI.
Drag-and-drop & chunked uploadsUses Dropzone.js to push very large files (size limit is only what your PHP .ini allows).
ACE & highlight.js editorsEdit code like VS Code in your browser – syntax highlighting for 150+ languages.
Archive handlingCreate or extract ZIP / TAR / GZ right inside the panel.
Granular permissionsreadonly_users, directories_users, IP whitelist / blacklist.
Mobile-ready Bootstrap 5 UINavigate on any screen, even Safari iOS.
No external DB callsEverything is handled by native PHP functions (scandir, ZipArchive, PharData).

Zero-Log Architecture

The only outbound HTTP call – a one-time version ping – can be removed by deleting the tiny anonymous function at the top of the script.

Vip FileManager writes nothing to a database or flat-file.

No Google Analytics, no hidden beacons.

Session data lives in standard PHP sessions and is destroyed on logout.