Sean
Sean

Reputation: 1888

FineUploader with Laravel

I am working on a project using Laravel 3. I need to have users be able to upload images to my server. I have gotten it to work using the standard Laravel Input and File classes but I want to link that to FineUploader (http://fineuploader.com/) so I have a better front-end interface. I have gotten this to work fine with straight PHP but I don't know how to do it using Laravel. Does anyone know how I can implement this or possibly another front end visual uploader in Laravel?

I want the user to be able to see the upload progress and whether it completes successfully or not.

Upvotes: 0

Views: 3252

Answers (1)

Ray Nicholus
Ray Nicholus

Reputation: 19890

As mentioned in the comments, please see Laravel's requests documentation for more information on handling the MPE POST requests that Fine Uploader sends.

As for your latest question, you can set Fine Uploader into "manual upload mode", when selected files are only uploaded when you call a specific API method. On form submittal, you can call this API method. There is a non-jQuery example and a jQuery example that demonstrates this on the home page. Please also see the options and API documentation.

Upvotes: 1

Related Questions