English 中文(简体)
PHP 书写器在大型文件上hang
原标题:PHP script just hangs on large file uploads

我有一套网址,使用户能够把多份文件上载到名册上的服务器上,然后转到下页。

看来它一直在一段时间内工作,但较晚的用户却报告它fin死。 他们投入所有领域,选择文件上载、上台,然后等数小时,然后放弃和关闭窗户。 但是,当我检查时,档案被成功上载和印章。 田间也没有张贴。

这本书似乎无法向下一节过渡,因为表格领域被平整并插入我的ql数据库。 我做了一些小的测试,不能重新解决问题。 虽然我没有时间用200M等大型档案进行测试。

任何用户的最大文档总长度为200M,因此,我认为我的营地核心环境已经足够。 在这方面,我已经:

max_execution_time = 7200
max_file_uploads = 20
max_input_time = 7200
memory_limit = 8000M
output_buffering = 4096
upload_max_filesize = 500M 

Anything else in the core settings that could perhaps be giving me this problem? Or would it be a browser problem?

最佳回答

这很可能是你的用户连接速度。 Ask是您的用户之一,其连接速度加快,利用谷歌 Chrome和眼光检查现状,应当提高上载进展的百分比。 或者,我建议尝试这一 yourself,并rot倒你的带宽人物。 除非用户有信使或有更好的联系(例如T1)。

问题回答

暂无回答




相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签