I'm working with an async file upload tool called plupload. I have everything set up and working the way I want on a standalone page, but I have a problem. I'm transferring my code to a content management system that stores all per-page PHP in a database - it also parses the PHP snippets, I think, to check that everything's error free.
The problem is this. I'd like to return a response on a successful upload.
On a standalone page, I use die('A response') and halt the PHP before the HTML section. In this case, I can't, because the CMS will still give the rest of the page in full.
I need to submit the form to self, because I'm incorporating some non-javascript stuff for degraded form validation etc.
Does anyone have an easy solution? I'm currently testing for any async response at all (after a post, I mean) and calling that a 'success' on completed upload, if you follow what I mean by that. I don't really like it. I wondered about forcing a server error on any non-success (if I can). Would that be especially bad practice?
I'm using a technique inspired by the above MySQL suggestion.
plupload includes a FileUploaded event.
I'm generating a random number before firing the upload and posting that along with each file. Once I'm done moving the file around at the server side (an email attachment, actually) - if the mail send is successful, I write a small text file using the random number as the name and 'success' or similar as the content. Then, when plupload's FileUploaded is fired, I make a new async request to a small standalone PHP file, passing over the same random number, and it reads the file before unlinking.
Thanks again for the help. Seems to work quite nicely.