forked from bcit-ci/CodeIgniter
-
Notifications
You must be signed in to change notification settings - Fork 0
SWFUpload
World Wide Web Server edited this page Jul 4, 2012
·
19 revisions
Here is how to implement SWFUpload with CI 1.5x
In your controller, specify a custom field name for the do_upload function:
[code] $this->upload->do_upload('Filedata') [/code]
In you 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]