Title: MediaNest Upload Manager
Author: Dilip Modhavadiya
Published: <strong>May 21, 2026</strong>
Last modified: August 8, 2026

---

Search plugins

![](https://ps.w.org/medianest-upload-manager/assets/banner-772x250.png?rev=3544749)

![](https://ps.w.org/medianest-upload-manager/assets/icon-256x256.png?rev=3544749)

# MediaNest Upload Manager

 By [Dilip Modhavadiya](https://profiles.wordpress.org/dilip2615/)

[Download](https://downloads.wordpress.org/plugin/medianest-upload-manager.2.0.0.zip)

 * [Details](https://test.wordpress.org/plugins/medianest-upload-manager/#description)
 * [Reviews](https://test.wordpress.org/plugins/medianest-upload-manager/#reviews)
 *  [Installation](https://test.wordpress.org/plugins/medianest-upload-manager/#installation)
 * [Development](https://test.wordpress.org/plugins/medianest-upload-manager/#developers)

 [Support](https://wordpress.org/support/plugin/medianest-upload-manager/)

## Description

MediaNest Upload Manager is a complete media staging and workflow platform for WordPress.

_Features:_

 * Chunked uploads (Plupload) with pause/cancel
 * Folder drag-and-drop upload
 * Directory browser with search and filter
 * File preview (images, PDF) and URL copy
 * Delete, rename, and move files
 * Single, bulk, and folder import to Media Library
 * Import status tracking in tree view
 * Settings page (file types, roles, duplicates, import destination)
 * Activity / audit log
 * REST API (`/wp-json/mediupma/v1/`)
 * Action/filter hooks for developers
 * Gutenberg block: MediaNest File Browser
 * Frontend shortcode: `[medianest_upload folder="client-name"]`
 * Webhook notifications (optional)

### Shortcode

Display a frontend upload form for logged-in users:

[medianest_upload folder=”optional/subfolder” roles=”subscriber,contributor”]

_Attributes:_

 * folder -> Target subfolder inside the staging directory (optional).
 * roles -> Comma-separated WordPress roles allowed to upload (optional).

### REST API

The REST API lets external tools and custom integrations work with the staging folder.
Enable it in Media  MediaNest Settings.

Namespace: mediupma/v1
 Base URL: /wp-json/mediupma/v1/

#### Authentication

Requests must be made by a logged-in WordPress user. Send the REST nonce header:
X-WP-Nonce

You can also use Application Passwords. Each endpoint checks plugin capabilities(
view, import, delete, or manage_options).

#### GET /files

List all files and folders in the staging directory.

Example: GET /wp-json/mediupma/v1/files

Returns a tree array with file name, relative path, size, mime type, and URL.

Permission: User can view staging files.

#### POST /import

Import one or more staging files into the Media Library.

Example: POST /wp-json/mediupma/v1/import

Body: JSON object with a relatives array of file paths, e.g. invoices/2026/photo.
jpg

Returns success, failed, and skipped arrays.

Permission: User can import files.

#### DELETE /files/{path}

Delete a file or empty folder from the staging directory.

Example: DELETE /wp-json/mediupma/v1/files/invoices/2026/photo.jpg

Returns a success message on delete.

Permission: User can delete staging files.

#### GET /activity

Retrieve the latest activity log entries (upload, import, delete).

Example: GET /wp-json/mediupma/v1/activity

Returns an entries array with action, relative path, user, and timestamp.

Permission: User can view staging files.

#### GET /settings

Read plugin settings. The webhook URL is excluded for security.

Example: GET /wp-json/mediupma/v1/settings

Permission: manage_options (administrator only).

### Developer Hooks

Extend or customize plugin behavior using WordPress actions and filters.

#### Action Hooks

Run custom code when staging files are uploaded, imported, or deleted.

Upload:

 * mediupma_before_upload -> Before upload completes. Args: relative path, user 
   ID.
 * mediupma_after_upload -> After file is saved. Args: relative path, user ID.

Import:

 * mediupma_before_import -> Before Media Library import. Args: relative path, user
   ID.
 * mediupma_after_import -> After successful import. Args: attachment ID, relative
   path, user ID.

Delete:

 * mediupma_before_delete -> Before delete. Args: relative path, user ID.
 * mediupma_after_delete -> After delete. Args: relative path, user ID.

#### Filter Hooks

Modify plugin defaults and permissions.

 * mediupma_allowed_extensions -> Filter allowed file extensions. Args: extensions
   array.
 * mediupma_import_attachment_args -> Filter attachment data before import. Args:
   args array, relative path.
 * mediupma_can_manage -> Filter user permission for an action. Args: can (bool),
   user ID, action name.

#### Example

Use add_action on mediupma_after_import with 3 parameters: attachment ID, relative
path, and user ID.

## Screenshots

[[

## Blocks

This plugin provides 1 block.

 *   MediaNest File Browser Display files from the MediaNest staging folder.

## Installation

 1. Upload the plugin folder to `/wp-content/plugins/`
 2. Activate the plugin through the Plugins menu in WordPress
 3. Go to Media -> MediaNest Upload Manager
 4. Configure settings at Media -> MediaNest Settings

## FAQ

### Does this plugin create files outside WordPress uploads?

No. All content stays inside your WordPress uploads directory.

### Can I allow video files?

Yes. Go to Media -> MediaNest Settings and configure allowed extensions.

### How do I add frontend upload for clients?

Use the shortcode: `[medianest_upload folder="client-deliveries" roles="subscriber"]`

## Reviews

There are no reviews for this plugin.

## Contributors & Developers

“MediaNest Upload Manager” is open source software. The following people have contributed
to this plugin.

Contributors

 *   [ Dilip Modhavadiya ](https://profiles.wordpress.org/dilip2615/)
 *   [ Rafik ](https://profiles.wordpress.org/rafikwp/)
 *   [ Dixit Pujara ](https://profiles.wordpress.org/dixitpujara/)

[Translate “MediaNest Upload Manager” into your language.](https://translate.wordpress.org/projects/wp-plugins/medianest-upload-manager)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/medianest-upload-manager/),
check out the [SVN repository](https://plugins.svn.wordpress.org/medianest-upload-manager/),
or subscribe to the [development log](https://plugins.trac.wordpress.org/log/medianest-upload-manager/)
by [RSS](https://plugins.trac.wordpress.org/log/medianest-upload-manager/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

#### 2.0.0

 * Added file management: delete, rename, and move files from the directory browser.
 * Added bulk import, folder import, and import status tracking in the tree view.
 * Added image/PDF preview, copy URL, search, and file-type filters.
 * Added settings page for file types, roles, duplicate handling, import destination,
   and uninstall cleanup.
 * Added activity log, REST API, developer hooks, optional webhooks, Gutenberg block,
   and frontend shortcode.
 * Added folder upload and upload queue pause/cancel controls.
 * Added video and audio file support (configurable in settings).
 * Improved chunked upload performance with memory-efficient file append.
 * Fixed Copy URL on HTTP and local development sites.
 * Added activation hook, translations support, and role-based permissions.

#### 1.1.1

 * Updated branding and improved admin/readme wording for WordPress.org.
 * Security: restrict uploads and imports to images (JPG, PNG, GIF, WebP) and PDF
   only.
 * Security: server-side content validation (image MIME detection, PDF magic bytes).
 * Security: harden upload subfolders with index.php and .htaccess (Apache).
 * Security: validate assembled file size after chunked uploads.
 * Initial release.

## Meta

 *  Version **2.0.0**
 *  Last updated **1 week ago**
 *  Active installations **Fewer than 10**
 *  WordPress version ** 6.7 or higher **
 *  Tested up to **7.0.4**
 *  PHP version ** 7.4 or higher **
 *  Language
 * [English (US)](https://wordpress.org/plugins/medianest-upload-manager/)
 * Tags
 * [directory](https://test.wordpress.org/plugins/tags/directory/)[files](https://test.wordpress.org/plugins/tags/files/)
   [import](https://test.wordpress.org/plugins/tags/import/)[media](https://test.wordpress.org/plugins/tags/media/)
   [upload](https://test.wordpress.org/plugins/tags/upload/)
 *  [Advanced View](https://test.wordpress.org/plugins/medianest-upload-manager/advanced/)

## Ratings

No reviews have been submitted yet.

[Your review](https://wordpress.org/support/plugin/medianest-upload-manager/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/medianest-upload-manager/reviews/)

## Contributors

 *   [ Dilip Modhavadiya ](https://profiles.wordpress.org/dilip2615/)
 *   [ Rafik ](https://profiles.wordpress.org/rafikwp/)
 *   [ Dixit Pujara ](https://profiles.wordpress.org/dixitpujara/)

## Support

Got something to say? Need help?

 [View support forum](https://wordpress.org/support/plugin/medianest-upload-manager/)