开发者

CakePHP & MeioUpload - WMV file not uploading

开发者 https://www.devze.com 2023-03-05 11:09 出处:网络
I\'m now using MeioUpload with CakePHP for my file upload component. It works great but for some reason, when I try to upload a wmv file, it doesn\'t work.

I'm now using MeioUpload with CakePHP for my file upload component.

It works great but for some reason, when I try to upload a wmv file, it doesn't work.

Anyone has any insight?

Here is the setting that I have

'allowedMime' => array('video/x-flv','video/mp4','video/quicktime','video/x-ms-wmv'),
'allowedExt' => array('.mp4','.flv','.mov','.wmv')

So all other extensions work except for the wmv one.

Here is the var_dump result

        [file_url] => Array
            (
                [name] => 1wmvsample.wmv
                [type] => 
                [tmp_name] => 
                [error] => 1
                [size] => 0
            )

        [mp4_url] => Array
            (
                [name] => 1mp4sample.jpg
     开发者_如何学C           [type] => video/mp4
                [tmp_name] => /Applications/XAMPP/xamppfiles/temp/phpG02Qdg
                [error] => 0
                [size] => 83427
            )

So the mp4 works but not the wmv.

The other weird thing is that with some wmv, $this->data will return empty.

Thanks,

Tee


The problem is with this specific wmv file that you're trying to upload, as you can see, in the file array it returns in the index error the number 1.

This number 1, according with the php documentation, is a error that occurs when the file pass the limit upload size of the php config, so you need to change the upload_max_filesize in your php.ini.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号