fixed -- the issue was javascript related in my submit button:
<input name="upload" type="submit" value="Up it!" onClick="this.disabled='true'; this.value='uploading...';">
i changed it to
<input name="upload" type="submit" value="Up it!" onClick="this.disabled='true'; this.value='uploading...'; this.form.submit();">
and it works now =)