|
Posted by bill on 11/25/06 15:26
petersprc wrote:
> Try error_reporting(E_ALL) and ini_set('display_errors', true) if
> necessary. May print some warnings. If that doesn't help, maybe check
> the owner of the directory/file, see if you have enough space, or if
> you have a quota on the destination directory...
Ok, I have it tracked down and it was the usual: "programmer error"
if ($_FILES['test-img'] = "") {
die ("no input file");
}
while testing to see if the $_FILES array exists, I was setting
it to null.
Thank you very much for the enhanced error reporting suggestions.
bill
>
> bill wrote:
>> I can validate that the file uploaded because is_uploaded_file()
>> returns true.
>> ---------
>> if (is_uploaded_file($_FILES['test-img']['tmp_name'])) {
>> echo "File ". $_FILES['test-img']['name'] ." uploaded
>> successfully.<br />";
>> }
>> ------------------------
>> When I try to move the file using move_uploaded_file it fails.
>> --------------
>> if (move_uploaded_file($_FILES['test-img']['tmp_name'],
>> $_SERVER['DOCUMENT_ROOT']. "/members/images/test-file.gif" )) {
>> echo "File is valid, and was successfully uploaded.<br />";
>> } else {
>> echo "File move failed!<br />";
>> }
>> --------------------------
>>
>> I have checked the existence and permissions on
>> $_SERVER['DOCUMENT_ROOT']. "/members/images/"
>> and it appears ok.
>>
>> What I need is some suggestions on how to debug this.
>> move_uploaded_file just returns a boolean, no idea of why it fails.
>>
>> thanks
>> bill
>
Navigation:
[Reply to this message]
|