-1

Testing Fine-Uploader and get the following trying to upload images. It's on a testbox and I have rights to the folder. I am not running under IIS as most of these errors when searching google have to do with IIS. Any ideas.

I am using asp.net / c# and I am not using URL Rewriting.

Michael Brown
  • 97
  • 1
  • 10
  • What is `/UploadImages`? – EdSF May 01 '15 at 20:31
  • I my directory to upload images in to from fine uploader. I just changed its default from /Uploads to what my folder is named where I am storing uploaded images – Michael Brown May 01 '15 at 20:37
  • I meant what does it do? Is it WebApi or anything that filters by type of HTTP request? – EdSF May 01 '15 at 20:54
  • http://fineuploader.com/ - It's just a file uploader plugin – Michael Brown May 01 '15 at 21:03
  • _IINM_ they provide the client-side as well as server-side examples for setting up Azure/AWS (to handle/process the request). Are you saying you just have a folder? – EdSF May 01 '15 at 21:10
  • See [this](https://github.com/FineUploader/server-examples/blob/master/ASP.NET%20MVC%20C%23/UploadController.cs) – EdSF May 01 '15 at 21:13

1 Answers1

0

The error suggests that the "/UploadImages" endpoint is not configured to accept POST requests (probably only GET requests). You'll need to update your server configuration appropriately so that POST requests are accepted.

Ray Nicholus
  • 19,538
  • 14
  • 59
  • 82