Skip to content Skip to sidebar Skip to footer

Fine Uploader: File Is Empty

i'm trying to integrate 'Fine Uploader' into my own CMS. After a successful upload, I remove the uploader to display a link to the file with a delete-button besides it. The proble

Solution 1:

Based on the discussion in the comments section, it does seem like you are experiencing some issues server-side. Perhaps something is interfering with the request? I had a similar issue at my workplace at one point. A network appliance was removing the file in the request (or perhaps even more than that, I don't recall) in some cases. The file would succeed on auto-retry though. I suppose its also possible that something isn't quite right in your PHP request handler as well. You will likely need to dig a bit deeper. This may involve inspecting the request as it hits your PHP handler and comparing it with the request according to either Chrome/Firebug's network tab or a proxy (such as Charles). If the requests do not match up, then something is intercepting the request and messing with it. If they do match up, and the request looks ok, then perhaps there is an issue in your PHP code.


Post a Comment for "Fine Uploader: File Is Empty"