我正在使用 Plupload 来管理我网站的文件上传。当我将 Plupload 配置为发布到以下测试文件时,记录显示正确,但是当我发布到 CI Controller 时,$_POST$_FILES 都是空的。
测试文件

<?php print_r($_FILES); print_r($_POST); ?>
使用标准 HTML 表单时,CI 确实可以正确显示 $_FILES$_POST 数组,那么您知道是什么原因造成的吗?
编辑
这是 plupload 配置
    var uploader = new plupload.Uploader({
    runtimes : 'html5,html4,flash,silverlight,browserplus',
    browse_button : 'pickfiles',
    container : 'container',
    max_file_size : '15mb',
    url : '/test.php',
    //url : '/upload/do_upload/',
    flash_swf_url : '/js/plupload/plupload.flash.swf',
    silverlight_xap_url : '/js/plupload/plupload.silverlight.xap',
    filters : [
        {title : "Documents", extensions : "pdf,doc,docx,rtf,txt"}
        ],
    multipart_params : { job : -2 }
});
这是 Controller
class Upload extends CI_Controller {

function __construct()
{
    parent::__construct();
}

function index()
{
    $this->load->view('upload_form', array('error' => ' ' ));
}

function do_upload()
{
            print_r($_POST);
            print_r($_FILES);
    $config['upload_path'] = 'incoming/';
    $config['allowed_types'] = 'pdf|doc|docx|rtf|txt';
    $config['max_size'] = '900';

    $this->load->library('upload');
    $this->upload->initialize($config); // MUST CALL ELSE config not loaded

    if ( ! $this->upload->do_upload()) {
        $error = array('error' => $this->upload->display_errors());
        $this->load->view('upload_form', $error);
    }
    else {
        $data = array('upload_data' => $this->upload->data());
                    $this->load->model('translation_model');
                    $this->translation_model->add_orig($job, $filePath);
        $this->load->view('upload_success', $data);
    }
}
}

最佳答案

最可能的原因是错误的 mod 重写规则。如果您正在使用任何,请尝试禁用它们并再次发布您的数据。

关于php - Codeigniter 空 $_POST & $_FILES,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9362587/

10-10 13:02