Welcome Guest, Not a member yet? Register   Sign In
Help!! I can upload anything with codeigniter
#17

[eluser]adekenny[/eluser]
Thanks for all your help.....

i've amended it as you advised but the same error message is appearing.

Unable to find a post variable called userfile.


Do i need to change something in my controller or upload library?

class Upload extends Controller
{

var $base;
var $css;
var $my_menu;
var $userfile;

function Upload()
{
parent::Controller();
$this->base = $this->config->item('base_url');
$this->css = $this->config->item('css');
$this->load->library('menu');
$this->my_menu = $this->menu->show_menu();
$this->load->library('upload');
$this->load->library('session');
$this->load->helper('form');
$this->load->helper('url');
}


function do_upload()
{

if(!$this->upload->do_upload($this->userfile))
{
$errors = array('errors' => $this->upload->display_errors());


$data['menu'] = $this->my_menu;
$data['base'] = $this->base;
$data['css'] = $this->css;

$this->load->view('photo_upload_failed', $errors);
}
else
{
$data['myupload'] = array('upload_data' => $this->upload->$this->data());

$data['menu'] = $this->my_menu;
$data['base'] = $this->base;
$data['css'] = $this->css;

$this->load->view('upload_success', $data);
}
}

}


Messages In This Thread
Help!! I can upload anything with codeigniter - by El Forum - 04-29-2010, 11:04 AM
Help!! I can upload anything with codeigniter - by El Forum - 04-29-2010, 11:16 AM
Help!! I can upload anything with codeigniter - by El Forum - 04-29-2010, 11:28 AM
Help!! I can upload anything with codeigniter - by El Forum - 04-29-2010, 11:30 AM
Help!! I can upload anything with codeigniter - by El Forum - 04-29-2010, 11:39 AM
Help!! I can upload anything with codeigniter - by El Forum - 04-29-2010, 12:19 PM
Help!! I can upload anything with codeigniter - by El Forum - 04-29-2010, 03:24 PM
Help!! I can upload anything with codeigniter - by El Forum - 04-29-2010, 03:50 PM
Help!! I can upload anything with codeigniter - by El Forum - 04-30-2010, 02:57 AM
Help!! I can upload anything with codeigniter - by El Forum - 04-30-2010, 06:59 AM
Help!! I can upload anything with codeigniter - by El Forum - 04-30-2010, 07:09 AM
Help!! I can upload anything with codeigniter - by El Forum - 04-30-2010, 09:51 AM
Help!! I can upload anything with codeigniter - by El Forum - 04-30-2010, 09:56 AM
Help!! I can upload anything with codeigniter - by El Forum - 04-30-2010, 10:02 AM
Help!! I can upload anything with codeigniter - by El Forum - 04-30-2010, 10:12 AM
Help!! I can upload anything with codeigniter - by El Forum - 04-30-2010, 10:22 AM
Help!! I can upload anything with codeigniter - by El Forum - 04-30-2010, 10:29 AM
Help!! I can upload anything with codeigniter - by El Forum - 04-30-2010, 10:55 AM
Help!! I can upload anything with codeigniter - by El Forum - 05-01-2010, 05:06 AM



Theme © iAndrew 2016 - Forum software by © MyBB