I have a web app that uses a flash uploader (swfuploader) and recently a user pointed us to a bug that happens when the script hangs more than 30 seconds.
I know flash documentation mentions that after 30 seconds of no response it will timeout, so i know i need to send some data to the browser before my convert function ends.
As of now the script uploads the file, convert it, and if it is a multipage pdf it will save the reference children pngs to db, this works fine on big and small files, problem happens that after 30 pages it will hang for more than 30 seconds.
Thanks in advance
I think you should just build the whole thing to be asynch and then you dont have to worry about that… right?