After any error detected by the server side part then no more uploads allowed

Issue #6 resolved
christiansalazar created an issue

how to reproduce:

  1. upload a file and reject it in the server side part, method:
public function yiifileman_accept_file($filename,$filesize, $mimetype,$is_server_side, &$reason){
     $reason = "some dummy reason";
     return false;
}
  1. try uploading a new file without refreshing the page. Result: the upload button does nothing.

Comments (2)

  1. christiansalazar reporter

    caused by: the busy form state stays after receiving result from server side part.

  2. Log in to comment