Hello: I am completing a php class Photograph to upload photographs, which contains the following code, where I get the error "The file location was not available.", and I can't find out why or where is the mistake! I can post here any part of code needed to solve the problem. I do find a temporary file in the temporary directory.
<?php
public $filename;
private $temp_path;
public $errors=array();
public function save() {
if(isset($this->id)) {
$this->update();
}else{
if(!empty($this->errors)) {return false;}
if(strlen($this->caption) > 255) {
$this->errors[] = "The caption can only be 255 characters long.";
return false;
}
if(empty($this->filename) || empty($this->temp_path)) {
$this->errors[] = "The file location was not available.";
return false;
}else{
$this->errors[] = "The file upload failed, possibly due to
incorrect permissions on the upload folder.";
return false;
}
}
}
?>
empty($this->filename)andempty($this->temp_path)and give them different error messages. That way, you can tell whether the filename or the temporary path is blank. – ChrisForrence Oct 19 '12 at 12:06