Thursday, 15 May 2014

php - upload video in grocery crud -



php - upload video in grocery crud -

i facing problem in grocery crud while uploading video file. during upload process it's shows process image after finished it's shows blank , video file doesn't upload. set 777 permission upload folder , seek upload mp4, flv, 3gp file formats.

here 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 construction is

title varchar(50), url text

and gave 777 permission uploads folder.

thanx

i have ran same problem , did increasing php upload limit in .htaccess.

php_value upload_max_filesize 500m php_value post_max_size 400m

but didn't stop here,now after upload "grocery crud list" shows video file link, added column phone call back, , integrated play button.

$crud -> callback_column('video_file_name', array($this, '_video_player')); function _video_player($value, $row) { homecoming "<a href='#' id='".$row -> video_id."' class='btn btn-sucess video_play'>play</a>"; }

hope understand saying.

php mysql codeigniter file-upload grocery-crud

No comments:

Post a Comment