• I can’t activate the plugin, the following error appears:

    Parse error: syntax error, unexpected ‘[‘ in /var/www/……………../wp-content/plugins/upload-quota-per-user/upload-quota-per-user.php on line 118

    best

Viewing 1 replies (of 1 total)
  • 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'];
Viewing 1 replies (of 1 total)
  • The topic ‘Activation problem’ is closed to new replies.