Is there a maximum size the copy() function can handle? I have been uploading files and using copy() this way for a while now, but today there was a 3 megabyte file I tried uploading resulting in the die() error in my code i wrote below.
@copy($file, "$updir/$file_name") or die("The file you are trying to upload couldn't be copied to the server");
Thanks much for any help on this subject