8

我已经设置了 codeigniter 来上传 < 2MB 的小文件,并且效果很好。但我无法上传大文件 20MB >

   function stage1()
    {
    ini_set('upload_max_filesize', '200M');
    ini_set('post_max_size', '200M');                               
    ini_set('max_input_time', 3000);                                
    ini_set('max_execution_time', 3000);

    $config['upload_path'] = './temp/';
    $config['allowed_types'] = 'zip';

    $this->load->library('upload', $config);
    $this->upload->initialize($config);                             
    if(!$this->upload->do_upload('userfile'))                       
    {
      $error = array('error' => $this->upload->display_errors());   
      $this->load->view('upload_form', $error);                     
    }
    else
    {
      $data = array('upload_data' => $this->upload->data());        
      //do stuff
    }
  } 

我不确定上面的代码有什么问题。我覆盖了 php.ini 以接受更大的文件并花费更多时间执行脚本,但它仍然返回相同的错误:

You did not select a file to upload.

同样,这适用于小文件,但不适用于大文件。

编辑:原来我的服务器提供商的文件上传有限,所以除了 FTP 文件之外没有其他解决方案。

4

2 回答 2

14

下面的代码在您的 php 文件中使用。

ini_set( 'memory_limit', '200M' );
ini_set('upload_max_filesize', '200M');  
ini_set('post_max_size', '200M');  
ini_set('max_input_time', 3600);  
ini_set('max_execution_time', 3600);

在 .htaccess 文件中设置以下代码

php_value upload_max_filesize 128M  
php_value post_max_size 128M  
php_value max_input_time 3600  
php_value max_execution_time 3600

评论后编辑我的答案

更新答案

在 stage1 函数中设置配置参数。

$config['max_size'] = '1000000';
$config['max_width']  = '1024000';
$config['max_height']  = '768000';

之后试试看。

于 2012-09-18T17:32:55.933 回答
1

我不确定您的服务器是否接受要使用 hphp 脚本修改的 ini“upload_max_filesize”属性。默认情况下它不能根据文档http://php.net/manual/fr/ini.core.php

upload_max_filesize | “2M” | PHP_INI_PERDIR | PHP_INI_ALL 倒 PHP <= 4.2.3。

PHP_INI_PERDIR 意味着它必须直接写在你的ini文件中。如果您无法控制 php.ini,您将无法覆盖此属性。

于 2012-09-18T17:23:17.973 回答