1

我在我的网站上设置了 Uploadify jQuery 插件来管理文件上传。在onUploadSuccess活动中,我有以下代码:

'onUploadSuccess' : function(file, data, response) {
    console.log("Upload complete for file " + file.name + ". Script returned: " + data);
}

这是为了向我展示上传脚本吐出的任何内容。现在,通常响应是这样的:

文件 test.jpg 的上传完成。返回的脚本:{"status":1,"file":{"id":"v8rwlxj3","name":"test.jpg"}}

上传脚本首先接受文件,然后使用 cURL 将其上传到 Rapidshare,如下所示:

// Move uploaded file
move_uploaded_file($_FILES['Filedata']['tmp_name'], $targetDir . '/' . $id);

// Get the RapidShare server to upload to
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'http://api.rapidshare.com/cgi-bin/rsapi.cgi?sub=nextuploadserver');
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
if(!$uploadServer = trim(curl_exec($ch))) {
    error('nextuploadserver failed');
}
if(strstr($uploadServer, 'ERROR:')) {
    error('nextuploadserver failed');
}

// Upload the file to RapidShare
$uploadID = mt_rand(1000000000, 9999999999);
$url = 'http://rs' . $uploadServer . '.rapidshare.com/cgi-bin/rsapi.cgi?uploadid=' . $uploadID;
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, 1);
$postFields = array('sub' => 'upload',
                    'login' => 'login',
                    'password' => 'password',
                    'uploadid' => $uploadID,
                    'filename' => $_FILES['Filedata']['name'],
                    'filecontent' => '@' . $targetDir . '/' . $id);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postFields);
if(!$resp = curl_exec($ch)) {
    error('upload call failed');
}

上传后,上传脚本会输出一个 JSON 响应,如下所示:

// Output
echo json_encode(array('status' => 1, 'file' => array('id' => $id, 'name' => $uploadDetails[1])));

这适用于较小的文件。然而,当我上传我的 30MB 测试文件时,我收到了以下回复:

文件 30mb.txt 的上传完成。返回的脚本:

起初我认为 PHP 正在达到最大执行时间,但我在脚本的顶部有这个:

set_time_limit(21600); // 6 hours

此外,我会看到返回的 PHP 错误。但它只是不返回任何东西。什么可能导致这种情况?谢谢。

4

4 回答 4

0

您确定您的upload_max_filesize设置为30M 以上吗?过去那件事让我有些头疼。

于 2012-06-16T19:59:16.580 回答
0

移除uploadid post参数。带简历上传的 Uploadid 参数。

于 2012-07-09T22:06:50.130 回答
0

是的,很好的答案,虽然它在评论中但对我有所帮助。 http://www.uploadify.com/documentation/uploadify/successtimeout/

将 successTimeout 设置为某个较高的值。让我们说1小时。

于 2012-11-23T12:55:48.070 回答
0

PHP 可能没有达到时间限制,但 ajax 可能在等待响应时达到连接超时。

于 2012-06-16T23:19:57.103 回答