Oddly enough…
I got this plugin working perfectly last night using WordPress version 4.0.1.
About 3 months ago had some issues getting it to work. But it was probably something on my end.
Must have been a conflict with a plugin or theme.
Another thing that helped was I refreshed the page where my “User Front-End Post Uploader” was each time to see the “file size and disk space limit” adjustments from the plugin.
===============
As for the PHP error at LINE 118…
All I had to do was
Edit the ” upload-quota-per-user.php ” file on line 118 by changing code from…
$user_id = get_post($id, ARRAY_A)['post_author'];
into
$user_id = get_post($id, ARRAY_A);
$user_id = $user_id['post_author'];
===========================
Thanks for this one. All the best.
—