Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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;
            }

        }
    }

?>
share|improve this question
3  
yea and where is the value you are injecting in $this->temp_path – Satya Oct 19 '12 at 11:45
1  
What you should do is split out (just temporarily) the checks for empty($this->filename) and empty($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
Thanks GlaciesofPacis, thanks Satya. Separating the checks, the mistake should be in empty($this->temp_path) ... and now? ... $this->temp_path = $file['tmp_name']; – user1758685 Oct 19 '12 at 13:29
I think it is clearly the $this->temp_path problem, but I don't find where is the mistake or thing missing to upload successfully the temporary file from the temporary directory – user1758685 Oct 19 '12 at 17:10
Thank you all! it was some }else{ forgotten in the public function attach_file($file)... silly mistake – user1758685 Oct 19 '12 at 19:51

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.