Welcome Guest, Not a member yet? Register   Sign In
swfupload problems!
#15

[eluser]OES[/eluser]
Hi Chaps.

I got swfupload to work no problem.

All you need to do is make sure you have the right paths in your javascript and use the normal upload library and change the mime types as per what the wikie said. http://codeigniter.com/wiki/SWFUpload/.

ie.

Code:
// within your header javascript for swf.

upload_url: "/pod_upload.html",    // Relative or absolte path to the SWF file.
file_post_name: "userfile", // This is the normal form field name.

Then as you can see my url points to pod_upload method.

// Method
function pod_upload()
{
    $config['upload_path'] = './assets/public/uploads/';
    $config['allowed_types'] = 'gif|jpg|jpe|jpeg|png';
    $config['max_size']    = '2000';
    $config['remove_spaces'] = TRUE;
    $config['encrypt_name'] = TRUE;
    
    $this->load->library('upload', $config);
    $this->upload->do_upload('userfile');
    
    if ( ! $this->upload->do_upload()):
        $file = "error";
    else:
        $data = $this->upload->data();
        $file = $data['file_name'] ;
    endif;
        
    echo $file; // You need to echo a result for SWF to action.
    }

Hope this helps you with swfUpload.


Messages In This Thread
swfupload problems! - by El Forum - 09-10-2008, 04:25 PM
swfupload problems! - by El Forum - 09-10-2008, 06:53 PM
swfupload problems! - by El Forum - 09-10-2008, 09:09 PM
swfupload problems! - by El Forum - 09-11-2008, 04:04 AM
swfupload problems! - by El Forum - 09-11-2008, 04:04 AM
swfupload problems! - by El Forum - 09-11-2008, 04:04 AM
swfupload problems! - by El Forum - 09-11-2008, 04:14 AM
swfupload problems! - by El Forum - 09-11-2008, 04:23 AM
swfupload problems! - by El Forum - 09-11-2008, 08:02 AM
swfupload problems! - by El Forum - 09-11-2008, 09:48 AM
swfupload problems! - by El Forum - 09-11-2008, 09:54 AM
swfupload problems! - by El Forum - 10-31-2008, 07:27 PM
swfupload problems! - by El Forum - 11-15-2008, 04:13 PM
swfupload problems! - by El Forum - 11-18-2008, 04:34 PM
swfupload problems! - by El Forum - 11-18-2008, 05:28 PM
swfupload problems! - by El Forum - 11-18-2008, 06:53 PM
swfupload problems! - by El Forum - 11-18-2008, 06:56 PM
swfupload problems! - by El Forum - 11-19-2008, 03:28 AM
swfupload problems! - by El Forum - 11-19-2008, 08:27 AM
swfupload problems! - by El Forum - 11-24-2008, 04:01 PM
swfupload problems! - by El Forum - 11-25-2008, 05:07 AM
swfupload problems! - by El Forum - 11-25-2008, 03:46 PM
swfupload problems! - by El Forum - 04-20-2010, 08:49 AM
swfupload problems! - by El Forum - 04-20-2010, 08:54 AM
swfupload problems! - by El Forum - 04-20-2010, 09:09 AM
swfupload problems! - by El Forum - 04-20-2010, 09:15 AM
swfupload problems! - by El Forum - 04-20-2010, 09:36 AM



Theme © iAndrew 2016 - Forum software by © MyBB