Assets Manager for WordPress is a self hosted file sharing tool, enable / disable links, set expiration and make files you share password protected.
Assets Manager is a self-hosted file sharing tool. Born out of the need for a file sharing tool that was not blocked by high security firewalls, such as many existing file sharing services are, Assets Manager was developed. When you upload a file, or set of files, Assets Manager generates obscured links to the files so that you can control how those files are shared.
For more information check out the full blogpost about Assets Manager.
Questions? Comments? Requests? Contact me.
Special thanks to @binmind for his extensive QA testing of the company’s plugin, his testing was crucial for development of the proof of concept and making sure everything was working as it should.
plugin-name.php
to the /wp-content/plugins/
directoryLet’s say there is incorrect information in the file, or there is an updated version, now you can disable the link sent out, shared, published and send out a new one.
The asset sets are blocked from being searchable in WordPress. This means that global searches of the site will not bring up any of the uploaded assets. This does not block search engines from finding them if they are linked to from someplace else. But it does make finding files harder if you do not have a direct link to the file.
Yes you can. Assets Manager generates a page that contains all of the links in the asset set. This page can then be shared. Note: if you have disabled or expired files they will not be listed on this page, if a file is “secure” and the visitor is not logged in the file link will not appear as well.
Sure, just drag and drop. No need to save. All reordering happens via AJAX automatically.
Sure, in some installs you may need to add this to your conf file, I needed this to serve images correctly:
location ~ ^/asset/(.*)$ {
try_files $uri $uri/ /index.php?$query_string;
}
Answer to foo bar dilemma.
Fixed js typo that was preventing reordering feature
Added period before file download extension
Implemented a better way to serve files
Fixed ssl issues
Fixed issue where filename was not filename chosen
Fixed issue where period was replacing wrong text
Removed style that hides .nav-links
Fixed additional HR added to posts (props @AEsco11)