Interface for logged-in users to upload/download files

You can have a look on the following plugin for this purpose: WordPress Download Monitor I have found this plugin very useful for uploading/downloading files. This plugin will store files in the web server. This has also built in Download Page function with built in sorting, pagination, search feature and many more.

External pages redirecting back to wordpress

You have 2 options: 1 – Move either WP or your vueJS into a separate folder severd from a new or sub domain, 2 – Adjust the default Wp .htaccess to ignore your externalfolder . after RewriteEngine On RewriteBase / add RewriteCond %{REQUEST_URI} !^/externalfolder/

WordPress HTTP Error on File upload

I faced the same problem with my WordPress site. It’s some bug in WordPress. Which version you are using? I resolved this error by adding a function to my functions.php file in my theme. function ms_image_editor_default_to_gd( $editors ) { $gd_editor=”WP_Image_Editor_GD”; $editors = array_diff( $editors, array( $gd_editor ) ); array_unshift( $editors, $gd_editor ); return $editors; } … Read more