Skip to content
World Wide Web Server edited this page Jul 4, 2012 · 19 revisions

Category:AJAX Category:Form Category:FLASH

Here is how to implement SWFUpload with CI 1.5x

In your controller, pass "Filedata" as the name value for the do_upload function:

[code] $this->upload->do_upload('Filedata') [/code]

In your mimes.php file, add 'application/octet-stream' for all allowed image formats

[code] 'gif' => array('image/gif', 'application/octet-stream'), 'jpeg' => array('image/jpeg', 'image/pjpeg', 'application/octet-stream'), 'jpg' => array('image/jpeg', 'image/pjpeg', 'application/octet-stream'), 'jpe' => array('image/jpeg', 'image/pjpeg', 'application/octet-stream'), 'png' => array('image/png', 'image/x-png', 'application/octet-stream'), [/code]

  • Slith The Seventh Letter/Iron Eye
Clone this wiki locally