Codeigniter:MP4 视频上传不起作用

2023-12-01php开发问题
0

本文介绍了Codeigniter:MP4 视频上传不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我正在研究一个问题很长时间,但仍然找不到任何解决方案.

I am researching on a problem for long time but still could not find any solution.

我正在使用 codeigniter 上传 mp4 文件.在此之前,我在 config/mimes.php 中为 mp4 添加了 mime 类型.我都试过了:mp4 =>视频/mp4mp4 =>array('video/mp4', 'video/3gpp')

I am uploading mp4 file using codeigniter. Before that I added mime type for mp4 in config/mimes.php. I tried both: mp4 => video/mp4 and mp4 => array('video/mp4', 'video/3gpp')

这两种方法在本地服务器上都很完美,但是每当我在 Live 服务器上测试它时,它总是给出相同的错误消息不允许您尝试上传的文件类型.".

Both of these works perfect in Local server but whenever I test this on the Live server then It always give the same error message "The filetype you are attempting to upload is not allowed.".

我又尝试了一件事.IE.$config['allowed_types'] = "*";

I tried one more thing. i.e. $config['allowed_types'] = "*";

它在本地和在线服务器上都能完美运行.

It works perfect in both local and online server.

但我只想要 mp4 视频类型.

But I want just mp4 video type.

有人有解决这个奇怪问题的办法吗?

Anybody have some solution for this strange problem?

推荐答案

终于我的问题得到了解决,所以我正在写这个答案.

Finally I got solution of my Problem so I am writing this answer.

本地和在线服务器中的大多数 MIME 类型检测是不同的.

Mostly detection of mime types in local and online server are different.

在我的例子中,本地服务器将 file_type 设置为video/mp4".但在线服务器将 mime 类型检测为application/octet-stream".

所以我在我的配置文件夹的 mime 类型列表中添加了数组:

So I added both in array in the mime type list in my config folder:

'mp4' =>array('video/mp4', 'application/octet-stream'),

现在它可以在本地和在线服务器上完美运行.

Now it works perfectly in both local and online server.

这篇关于Codeigniter:MP4 视频上传不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

PHP实现DeepL翻译API调用
DeepL的翻译效果还是很强大的,如果我们要用php实现DeepL翻译调用,该怎么办呢?以下是代码示例,希望能够帮到需要的朋友。 在这里需要注意,这个DeepL的账户和api申请比较难,不支持中国大陆申请,需要拥有香港或者海外信用卡才行,没账号的话,目前某宝可以...
2025-08-20 php开发问题
168

PHP通过phpspreadsheet导入Excel日期数据处理方法
PHP通过phpspreadsheet导入Excel日期,导入系统后,全部变为了4开头的几位数字,这是为什么呢?原因很简单,将Excel的时间设置问文本,我们就能看到该日期本来的数值,上图对应的数值为: 要怎么解决呢?进行数据转换就行,这里可以封装方法,或者用第三方的...
2024-10-23 php开发问题
287

mediatemple - 无法使用 codeigniter 发送电子邮件
mediatemple - can#39;t send email using codeigniter(mediatemple - 无法使用 codeigniter 发送电子邮件)...
2024-08-23 php开发问题
11

Laravel Gmail 配置错误
Laravel Gmail Configuration Error(Laravel Gmail 配置错误)...
2024-08-23 php开发问题
16

将 PHPMailer 用于 SMTP 的问题
Problem with using PHPMailer for SMTP(将 PHPMailer 用于 SMTP 的问题)...
2024-08-23 php开发问题
4

关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题
Issue on how to setup SMTP using PHPMailer in GoDaddy server(关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题)...
2024-08-23 php开发问题
17