Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Pigo3934blog

    (@pigo3934blog)

    Is the quota per upload session or per user role ?

    Does this plugin work for custom user roles ?

    Or just default ones within WP ?

    Thread Starter Pigo3934blog

    (@pigo3934blog)

    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.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘I was able to exceed the quota on WP 4.0’ is closed to new replies.