I facing the problem in grocery crud while uploading a video file. During upload process it's shows process image after finished that it's shows blank and video file doesn't upload. I already set 777 permission to my upload folder and I try to upload mp4, flv, 3gp file formats.
Here is my PHP code
function test_video(){
$crud=new grocery_CRUD();
$crud->set_table('test');
$crud->set_subject('Test Video');
$crud->set_field_upload('url', 'assets/uploads');
$output=$crud->render();
$this->_crud_output($output);
}
My DB structure is
TITLE varchar(50), URL text
And I already gave 777 permission to uploads folder.
Thanx