Hey thanks for the response! Actually I found how it works.
Quick example:
uploadform.php // has my html form & js stuff
uploadscript.php // has what I want to do DB/UPLOAD
uploadprogress.php // deals with the echo json_encode(uploadprogress_get_info());
in uploadform i have
<form action="uploadscript.php" onsubmit="doUpload()" ></form>
So its all working I see the progress bar move. The problem is part of my script never finishes. Once it hits move_uploaded_file(file,path); it dies from here and it also never moves the file. Anything below that also never happens.
Anyone have any idea why? Thank you!