Я пытаюсь загрузить изображение в codeigniter в localhost. Но изображение не загружается. Есть ли какие-либо изменения в файле конфигурации. Необходимый контроллер показан ниже ...
<?php
class upload extends CI_Controller
{
public function __construct()
{
parent::__construct();
$this->load->helper(array(
'url',
'form',
'html'
));
}
function index()
{
$this->load->view('upload_form');
}
function do_upload()
{
$config['upload_path'] = '../uploads/';
$config['allowed_types'] = 'gif|jpg|png';
$config['max_size'] = '500';
$config['max_width'] = '1024';
$config['max_height'] = '768';
$this->load->library('upload', $config);
if (!$this->upload->do_upload()) {
//$error = array('error' => $this->upload->display_errors());
//$this->load->view('upload_form', $error);
$this->load->view('upload_form');
} else {
//$data = array('upload_data' => $this->upload->data());
$this->load->view('upload_success');
}
}
}
?>