A little php novice here, perhaps this is universal to the server.
I have a form to upload files, and php does a move_uploaded_file() after the form is being processed. However sometimes the file will not get copied over. I believe the temp file gets stored in to /tmp . Is it because the server is deleting this file too fast before php can copy the file over?
Is there a way set the "tmp" folder for these uploads else where? Or would I have to tell the service provider to do something about it?
I have a form to upload files, and php does a move_uploaded_file() after the form is being processed. However sometimes the file will not get copied over. I believe the temp file gets stored in to /tmp . Is it because the server is deleting this file too fast before php can copy the file over?
Is there a way set the "tmp" folder for these uploads else where? Or would I have to tell the service provider to do something about it?