我做了一个基于ajax的多文件上传,运行得很好。但问题是我必须上传非常大的文件意味着每个文件高达200 MB,并且可能同时是20-25个相同大小的文件。正在上传文件,但上传需要很长时间。
我在php ini设置中改变了一些东西
post_max_size 10G
upload_max_size 10G
max_execution_time 3600
memory_limit -1
那么处理这种类型的文件上传的最佳解决方案是什么,它可以快速执行。
我的互联网连接速度为100 MB / S,上传速度为20 MB / S.
请建议我一些好的解决方案。
答案 0 :(得分:0)
从您的应用程序的角度来看,您唯一能做的就是限制同步文件上传。扩展您的ajax多文件上载脚本,一次只上传一个文件。这可能会加速一些事情。
但是,您的问题可能不是由应用程序本身引起的,而是由您的服务器的网络速度或其磁盘写入速度引起的。某些VPS提供程序还限制了磁盘写入操作的数量/秒。因此,最好的办法可能是将您的应用程序迁移到具有更好网络速度和性能的其他服务器。 :)
答案 1 :(得分:0)
根据您要上传的文件类型,您可以尝试将压缩文件发送到服务器并在上传完成后将其解压缩。
您可以在php here中看到有关zip函数的更多信息。
要压缩一个文件: 资料来源:http://davidwalsh.name/create-zip-php
/* creates a compressed zip file */
function create_zip($files = array(),$destination = '',$overwrite = false) {
//if the zip file already exists and overwrite is false, return false
if(file_exists($destination) && !$overwrite) { return false; }
//vars
$valid_files = array();
//if files were passed in...
if(is_array($files)) {
//cycle through each file
foreach($files as $file) {
//make sure the file exists
if(file_exists($file)) {
$valid_files[] = $file;
}
}
}
//if we have good files...
if(count($valid_files)) {
//create the archive
$zip = new ZipArchive();
if($zip->open($destination,$overwrite ? ZIPARCHIVE::OVERWRITE : ZIPARCHIVE::CREATE) !== true) {
return false;
}
//add the files
foreach($valid_files as $file) {
$zip->addFile($file,$file);
}
//debug
//echo 'The zip archive contains ',$zip->numFiles,' files with a status of ',$zip->status;
//close the zip -- done!
$zip->close();
//check to make sure the file exists
return file_exists($destination);
}
else
{
return false;
}
}
要解压缩服务器中的文件:
<?php
$zip = new ZipArchive;
$res = $zip->open('file.zip');
if ($res === TRUE) {
$zip->extractTo('/myzips/extract_path/');
$zip->close();
echo 'woot!';
} else {
echo 'doh!';
}
?>
答案 2 :(得分:-2)
最好的方法是使用旧的好FTP和一些FTP客户端,例如FileZilla
。