对此我有很多疑问。
在autoload.php中,在$ autoload [libraries]中应为哪个库指定 上传文件。
参考时,我看到使用
$ this-> load-> library('upload',$ config);
,并且我的文件中没有名为upload的库。
3.下面是我的控制器
function cpanel_download_or_upload()
{
if(isset($_POST[TAG_UPLOAD]))
{
$config['upload_path'] = './uploads/';
$config['allowed_types'] = 'zip';
if ( ! is_dir($config['upload_path']) ) die("THE UPLOAD DIRECTORY DOES NOT EXIST");
$this->load->library('upload', $config);
if ( ! $this->upload->do_upload('userfile')) {
die("ERROR");
} else {
return array('upload_data' => $this->upload->data());
}
}
$this->load->view('CPANEL/access_file_from_or_to_cpanel.php');
}