Verot class.upload.php上传大文件

时间:2016-05-07 18:56:52

标签: php file-upload filesize

我使用上传表单上传图片。小像< 4mb会起作用。 但是,如果我上传的文件大小为5.7MB,那么它什么都不做。它只是不上传文件。我搜索了很多,但我无法理解。我认为问题必须处理这段代码:

case 'png':
                        if (!function_exists('imagecreatefrompng')) {
                            $this->processed = false;
                            $this->error = $this->translate('no_create_support', array('PNG'));
                        } else {
                            echo $this->file_src_pathname;
                            echo $this->log;
                            echo $this->error;
                            echo $image_src = @imagecreatefrompng($this->file_src_pathname);
                            if (!$image_src) {
                                $this->processed = false;
                                $this->error = $this->translate('create_error', array('PNG'));
                            } else {
                                $this->log .= '- source image is PNG<br />';
                            }
                        }
                        break;

@imagecreatefrompng($ this-&gt; file_src_pathname)函数是我的代码中断的那段代码。除非我将其注释掉,否则在该代码之后它不会输出任何内容。我已经将内存限制更改为256M,文件上传到64M。文件名已设置。我不知道为什么它只会在处理大文件时破坏我的代码。你们中的任何人都有想法吗?

文件上传页面上的代码是:

//表格处理

包括( '../包括/ class.upload.php');

    $files = array();
foreach ($_FILES['my_field'] as $k => $l) {
    foreach ($l as $i => $v) {
        if (!array_key_exists($i, $files)) 
            $files[$i] = array();
        $files[$i][$k] = $v;
    }
}

foreach ($files as $file) {
if(!empty($file)){

$handle = new Upload($file, 'nl_NL');

            if (!file_exists("../classified_images/$adid")) 
    mkdir("../classified_images/$adid", 0777); 

        $tag_code_p = generatePassword(25);

        if ($handle->uploaded) {
        $oriname = $handle->file_src_name;
        $handle->mime_magic_check = true;
        $handle->allowed = array('image/*');
        $handle->image_convert = 'jpg';
        $newname = $adid."_big_".$tag_code_p;
        $handle->file_new_name_body   = $newname;
        $handle->image_resize          = true;          
        $handle->image_ratio_fill      = true;
        $handle->image_y               = 600;
        $handle->image_x               = 800;
        $handle->image_background_color = '#FFFFFF';

// //现在,我们开始上传'流程'。也就是说,复制上传的文件   // //从临时位置到想要的位置   // //可能是$ handle-&gt; Process('/ home / www / my_uploads /');             $把手型&GT;方法( “../ classified_images /”);

        // we check if everything went OK
        if ($handle->processed) {

        $handle->image_convert = 'jpg';
        $newnamesmall =$adid."_small_".$tag_code_p;
        $handle->file_new_name_body   = $newnamesmall;
        $handle->image_resize          = true;          
        $handle->image_ratio_fill      = true;
        $handle->image_y               = 94;
        $handle->image_x               = 125;
        $handle->image_background_color = '#FFFFFF';

        // now, we start the upload 'process'. That is, to copy the uploaded file
        // from its temporary location to the wanted location
        // It could be something like $handle->Process('/home/www/my_uploads/');
        $handle->Process("../classified_images/");

        $handle->clean();
                //inserten in database
    $sql_foto_insert = "insert into  photos 
                ( adid,  photosmall,  photo)
                values
                ('$adid', '$newnamesmall.jpg','$newname.jpg')";
    $foto_result = mysql_query($sql_foto_insert);  

            // everything was fine !
            //$msg .= $oriname.' '.LANG_FOTOS_SAVED.'<br />';
            $allok = 1;

        } else {
            // one error occured
            $msg .= $handle->error . '<br />';
        }

    } 

1 个答案:

答案 0 :(得分:1)

这可能是由配置问题引起的。因为这发生在文件&gt;一定的大小,我觉得它可以与php ini设置有关。

在php ini设置中检查upload_max_filesizepost_max_size。这些可以设置为4MB。您可以增加这些值以使其正常工作。

如果您处于无法编辑php ini的共享托管环境中,可以将其添加到.htaccess文件中,如下所示:

php_value upload_max_filesize 7M
php_value post_max_size 7M

此外,您应该从函数中删除@以查看错误。在开发/调试时,通过添加@来解决错误是一个坏主意。

此外,如果您在本地计算机或自己的开发服务器中,请打开apache error_log并检查最后几行以查看错误。如果您在第三方服务器上,大多数控制面板都提供了查看错误日志的界面。