简体   繁体   English

无法在WampServer 2.5上使用PHP5.5.12上传音频文件

[英]Can't upload audio file with PHP5.5.12 on WampServer 2.5

I have a problem with upload mode in PHP. 我在PHP中的上传模式有问题。 Can you help me ? 你能帮助我吗 ? My form in HTML: 我的HTML表单:

<form action="upload_file.php" enctype="multipart/form-data" method="post">
    <input type="file" name="file">
    <input type="submit" value="ok">
</form>

My PHP code in 'upload_file.php' : 我在'upload_file.php' PHP代码:

<?php

if (!isset($_FILES['file'])){
    echo "Failed";
}
else{
    echo "All Ok";
}
?>

When I select image , text , zip , rar ... It report "All Ok" . 当我选择imagetextziprar ...它报告“一切正常” But, If I select audio or video , it report "Failed" . 但是,如果我选择audiovideo ,它将报告“失败” So I can't upload audio file. 所以我无法上传音频文件。 What is wrong ? 怎么了 ? Thank you very much !. 非常感谢你 !。

Make sure that the size of your file does not exceed the limitations listed here (your php.ini file) 确保文件大小不超过此处列出的限制(您的php.ini文件)

# The values are just for example! 

; Maximum allowed size for uploaded files.
upload_max_filesize = 3M

; Must be greater than or equal to upload_max_filesize
post_max_size = 3M

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 password_hash()不适用于PHP5.5.12 - password_hash() not working with PHP5.5.12 哪里可以找到适用于Windows wampserver 2.5的php 5.5.12的php_imagick.dll? - Where to find php_imagick.dll for php 5.5.12 for Windows wampserver 2.5? 如何在WampServer中将PHP 5.5.12升级到5.6.12 - How to Upgrade PHP 5.5.12 to 5.6.12 in WampServer 无法加载动态库 &#39;c:/wamp/bin/php/php5.5.12/ext/php_intl.dll&#39; - Unable to load dynamic library 'c:/wamp/bin/php/php5.5.12/ext/php_intl.dll' 如何在php5.5.12和Apache 2.4上配置enable php_pdo_mysql - How to configure enable php_pdo_mysql on php5.5.12 and Apache 2.4 无法从PHP 5.5.12更新-Ubuntu 16.04 - Can't update from php 5.5.12 - Ubuntu 16.04 无法在wampserver 2.5上获得作曲家的工作:主机未知 - Can't get composer work on wampserver 2.5: host not known 升级到PHP 5.5.12(WAMP 2.5)后,未定义索引“ admin” - Undefined Index “admin” After Upgrading to PHP 5.5.12 (WAMP 2.5) PHP 无法上传视频和音频文件 - PHP can't upload Video and Audio Files 无法加载动态库&#39;c:/wamp/bin/php/php5.5.12/ext/php_ldap.dll&#39; - 找不到指定的模块。 在第0行的未知中 - Unable to load dynamic library 'c:/wamp/bin/php/php5.5.12/ext/php_ldap.dll' - The specified module could not be found. in Unknown on line 0
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM