I need to upload files from the front in my plugin. I got the success with it, but then now I have an issue during uploading larger file than 1.5 KB. Whenever I select file larger than 1.5 KB, i get error:
1298012500: Required argument "newRockupload" is not set for Rock\RockUpload\Controller\RockuploadController->create.
So i have put this code in initializeCreateAction() of controller to debug:
$arguments = $this->request->getArguments();
DebuggerUtility::var_dump($arguments);
exit;
So whenever i select file which has lower size than 1.5 KB, I get posted data successfully in controller:
And whenever i select larger file than 1.5 KB i am getting nothing like this:
I tried and surfed lot. Need Help..