$config['upload_path'] = './uploads/';
$config['allowed_types'] = 'doc|docx';
$config['max_size'] = '400';
$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);
}
else
{
$data = array('upload_data' => $this->upload->data());
$this->referral_model->postCVReferralInfo($m_id, $emp_id , $job_id, $name, $age , $gender,$country_id, $mobile, $email, $summary, $workExp, $education, $qualification, $offer, $sb_id);
header('location:'.$this->config->base_url().'index.php/member/referSuccess');
exit;
} `
如果我嘗試上傳doc文件比我收到錯誤「上傳路徑似乎不是有效的」。我替換路徑絕對路徑,然後我得到這個錯誤。 請建議我怎麼能解決issue.`上傳路徑似乎不是有效的「。 Codeigniter文件上傳
你的上傳文件夾在哪裏? –
上傳文件夾位於主文件夾內(其中應用程序文件夾,圖像文件夾等位於主文件夾內) – Lalit
確保該目錄是可寫的。什麼chmod設置在它上面? – thpl