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.

I'm trying to delete selected images on the server using Codeigniter. Here is the code in my controller:

$photos = $this->input->post('photograph');

foreach ($photos as $photo) {
            echo 'photo: '.$photo.'<br />';
            if (unlink('./uploads/'.$photo)) {;
                echo 'success!';
            }
            else {
                echo "error deleting file.";
            }
        }

Here is what's happening:

  • I'll select a file in the form, click delete, and I get the "success!" message from the controller.
  • However, when I check the server, the image is still there.
  • If I select the same file again, click delete, I get the error message, along with the PHP error message:

unlink(./uploads/path/to/file) [function.unlink]: No such file or directory.

Can anyone tell me what's going on here? My understanding was that unlink() is supposed to delete files, but that doesn't appear to be happening here.

share|improve this question
2  
probably a cached copy in your browser. Are you checking the actual server folder where the image is/used to be stored? unlink would not return true unless the file WAS removed. – Marc B Oct 31 '12 at 15:13
Something is wrong with the path ('./uploads/'.$photo). Try to print it and analyze if its correct. – Abhishek Saha Oct 31 '12 at 15:14
What is the value of $photo? Have you tried an absolute path? – Jrod Oct 31 '12 at 15:14
Check if $photo comes with the extension. – Abhishek Saha Oct 31 '12 at 15:14
I'm checking the existence of the file via my FTP program -- it's still showing that it's there. Regarding the path and the photo extension: The extension is part of the $photo variable, and the complete path is the relative path to the file. I used the same relative path that I used when uploading the file to the server via the CodeIgniter controller. (I would worry more about my file path name if I got the error message the first time around...but given the initial success message, I'm guessing the path is correct.) – Christina Huggins Ramey Oct 31 '12 at 15:22
show 2 more comments

closed as too localized by Barmar, hjpotter92, alex23, Jean-Bernard Pellerin, brasofilo May 11 at 2:25

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

Many FTP programs cache the results of a directory listing to make directory traversing seem very fast. If you manually refresh the directory containing the file, you'll most likely see that the file has actually been deleted.

I'm not sure which FTP program you use, so depending on how aggressive the caching is, refreshing might not work, in which case you'll have to disconnect/reconnect to the server or quit the program to see new results.

If you have shell access to your server, the ls command does not cache directory listing results, so you can cd to that directory and run ls (or ls -l for more readable results) to show the files in the directory.

share|improve this answer
Even after quitting the FTP program and restarting (I use Transmit for OSX), the files are still there. – Christina Huggins Ramey Oct 31 '12 at 16:53
You tried pressing CMD+R while in the directory? – Brendan Oct 31 '12 at 17:22
Yup! But the files were still there, – Christina Huggins Ramey Oct 31 '12 at 17:55
1  
Not sure what to tell you then, but the PHP error is basically telling you that it worked the first time. You could use file_exists('path/to/file') to check if it's there on the server in your script. – Brendan Oct 31 '12 at 18:01
Okay, I'm an idiot. I was developing the app locally, but also had a live version of the application. I was checking the live server for the files, rather than my local hardrive. And the app was still displaying the deleted photos, as the thumbnails still existed. I'm a dope! Thanks for your help, and sorry for wasting everyone's time. – Christina Huggins Ramey Oct 31 '12 at 19:23

This was a stupid mistake on my part. I was developing the app locally, but also had a live version of the application. I was checking the live server for the files, rather than my local hardrive. And the app was still displaying the deleted photos (in the list of photos available to delete), as the thumbnails still existed.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.