Welcome Guest, Not a member yet? Register   Sign In
Multiple Image Upload Problems
#1

[eluser]dennismonsewicz[/eluser]
I did a google search on a CodeIgniter plugin that uses jQuery and does multi image uploading and I found one here: http://www.mitesdesign.com/blog/open-sou...de-igniter

I followed the instructions he has, but I cannot get any errors to dump out

Code:
$config['upload_path'] = '/path/to/dir/';
            $config['allowed_types'] = 'mp3|m4a';
            $this->load->library('upload', $config);
            $this->load->library('Multi_upload');
        
            if($this->upload->display_errors()) {
                $this->session->set_flashdata('audio_error', $this->upload->display_errors());
                redirect('/profile/main');
            } else {
                $this->multi_upload->go_upload();
                $this->session->set_flashdata('audio_success', 'Files uploaded successfully!');
                redirect('/profile/main');
            }

I have tried everything and cannot get errors to occur... Any help is GREATLY appreciated! Thanks!
#2

[eluser]dennismonsewicz[/eluser]
bump




Theme © iAndrew 2016 - Forum software by © MyBB