Welcome Guest, Not a member yet? Register   Sign In
upload
#1

[eluser]davy_yg[/eluser]


I am following the help guide tutorial, exactly as it said. the following error appears:

The upload path does not appear to be valid.

I already created upload path in codeigniter folder and set the permission to full control for users. I wonder why.
#2

[eluser]noideawhattotypehere[/eluser]
No1 will help you if you dont post your code.
#3

[eluser]davy_yg[/eluser]
controllers/upload.php

Code:
<?php

class Upload extends CI_Controller {

function __construct()
{
  parent::__construct();
  $this->load->helper(array('form', 'url'));
}

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

function do_upload()
{
  $config['upload_path'] = './uploads/';
  $config['allowed_types'] = 'gif|jpg|png';
  $config['max_size'] = '100';
  $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->load->view('upload_success', $data);
  }
}
}
?>

views/upload_form.php

Code:
<html>
<head>
<title>Upload Form</title>
</head>
<body>

<?php echo $error;?>

<?php echo form_open_multipart('upload/do_upload');?>

<input type="file" name="userfile" size="20" />

<br /><br />

&lt;input type="submit" value="upload" /&gt;

&lt;/form&gt;

&lt;/body&gt;
&lt;/html&gt;
#4

[eluser]noideawhattotypehere[/eluser]
You didn't create folder named uploads in your codeigniter root folder.




Theme © iAndrew 2016 - Forum software by © MyBB