I have an issue. I am accessing a Data Migration application where i am transferring 6K records from a CSV file to Mysql database using PHP. The server(Ubuntu) is at different location. what i am noticing is that in my local host environment it is working fine.(There are 3 different scripts for validations,insertion and update) but when i am uploading the same file from Mozilla browser using server application the first script executed for two times and then after that it is showing “The connection was reset” but when i used Chrome browser it worked fine.Initially i analyzed the reason that it is not able to return any value to browser within certain interval of time and that’s why the browser would have sent another request and for that i put blank echo statements in between the script but even though it is not working in Mozilla Firefox. i am using recent version of Firefox. One more thing i would like to add in back end it is database query is executing executing. i have used set time limit and ignore user abort. Please Help…
Share
Sorry for replying late, i found a solution long back.I am calling the next page(which i need to execute) using system call and at the same time referring the current page to home page and through this way actual processing is happening in the back end and it is not creating any problem related to browser request. In earlier case i was simply executing complex mysql codes through php and browser was not getting any output that’s why it was firing multiple request after some point of time.