Yii: Video upload gets failed upon uploading

前端 未结 2 1954
被撕碎了的回忆
被撕碎了的回忆 2021-01-27 01:30

I am yiibie. What i am tying to do to upload videos, for that i am using Uploadmiltifiles extension and following this link http://www.yiiframework.com/extens

2条回答
  •  谎友^
    谎友^ (楼主)
    2021-01-27 02:04

    It seems that your html form doesn't have the enctype attribute so $_FILES is empty. Try to add:

    beginWidget('bootstrap.widgets.BsActiveForm', array(
        'id'=>'video-form',
        'enableAjaxValidation'=>false,
    
        'htmlOptions'=>array('enctype'=>'multipart/form-data'),
    
    )); ?>
    

提交回复
热议问题