!!!Does http file uploaded started by PHP have a size limit?
Posted: Thu Apr 10, 2003 2:27 am
URGENT!!! Please help!
I created a client file upload/download area for one of my clients. I have everything working, directory creation, deletion, file size listing, directory size listings, etc...
But when it comes to my upload dialogue, files over a couple of megabytes fail. Smaller files upload without a hitch.
You chose the file name through a form field (superdat).
Here is part of my code:
if ($superdat_name != "") {
copy("$superdat", $dir.$superdat_name) or
die("Couldn't copy file.");
(It fails on the middle line. "Warning: Unable to open 'none' for reading: No such file or directory ")
Why do smaller files work, and others don't?
URGENT!!! Please help!
Ron R
I created a client file upload/download area for one of my clients. I have everything working, directory creation, deletion, file size listing, directory size listings, etc...
But when it comes to my upload dialogue, files over a couple of megabytes fail. Smaller files upload without a hitch.
You chose the file name through a form field (superdat).
Here is part of my code:
if ($superdat_name != "") {
copy("$superdat", $dir.$superdat_name) or
die("Couldn't copy file.");
(It fails on the middle line. "Warning: Unable to open 'none' for reading: No such file or directory ")
Why do smaller files work, and others don't?
URGENT!!! Please help!
Ron R