hugodias / FileUpload

Jquery File Upload for CakePHP 2.x
68 stars 25 forks source link

JqueryFileUpload - CakePHP v 0.1


Using the jQueryFileUpload from blueimp in CakePHP 2.1.x

You can find the documentation here

Demo

Quick start

CREATE TABLE uploads (
id int(11) NOT NULL AUTO_INCREMENT,
name varchar(255) NOT NULL,
size int(11) NOT NULL,
PRIMARY KEY (id)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;
CakePlugin::load('FileUpload');