fileinfo extension enabledpublic/uploads directory on your serverUpload the entire wowonder-file-manager directory to your server or hosting root. For Linux/Windows use FTP/SFTP or direct file transfer. For Termux on Android, clone or download files into your Termux home directory.
Ensure public/uploads exists and is writable by the web server. If missing, create it with these commands:
mkdir -p public/uploads chmod 755 public/uploads
Access install.php via your browser (e.g. https://your-domain.com/install.php) and fill in your database credentials. The installer will create the necessary database and tables, and generate the configuration file config/config.php.
Set the wowonder-file-manager directory as the web root or point your domain/subdomain to it. Your main app entry point is index.php in the root.
Navigate to https://your-domain.com/index.php to start uploading and managing files with the modern Wowonder-style interface.
Make sure Apache or Nginx user (e.g. www-data) has write permissions on public/uploads. Use commands:
chown -R www-data:www-data public/uploads chmod -R 755 public/uploads
If using XAMPP or WAMP, ensure the uploads folder has write permissions through folder Properties > Security > Edit > allow write for Everyone or the Apache user account.
Install PHP and MySQL inside Termux, upload the project files in Termux home directory, and start PHP built-in server:
php -S localhost:8080
Access the app in a browser on Android or another device via http://localhost:8080/install.php.
The usual hosting control panel (cPanel, Plesk, etc.) supports PHP & MySQL; upload files and run the installer similarly. Set proper file permissions via the panel’s file manager.
public/uploads exists and is writable.fileinfo PHP extension is enabled in php.ini.public/uploads, avoid writable permissions for all users.install.php after setup.You can customize allowed file types, size limits, and UI elements by editing the relevant files in config/, src/, and templates/ directories.
Refer to the project’s README.txt for contribution guidelines or contact support channels if this is a commercial project.