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.

Is there a way I can have an upload form that replaces the existing file with a file of the same name?

share|improve this question
4  
Yes: you can write it. At least try to do it. If you don't know even basics - read the books or manual. – OZ_ Jun 27 '11 at 11:42
1  
Is your current code not working? Check that your script has access to the file after it has been uploaded. If it's currently failing because the file already exists, you need to change its permissions. – stealthyninja Jun 27 '11 at 11:46
1  
@stealthyninja Thanks, I believe it's a problem with the permissions :) – Mohamed Said Jun 27 '11 at 11:48

1 Answer

move_uploaded_file(), rename(), copy() etc will overwrite any pre-existing file with the new one (unless the file's permissions prevent such a thing). It's all there in the manual.

share|improve this answer
move_uploaded_file() will not always overwrite file regardless the warning in PHP docs - 'If the destination file already exists, it will be overwritten.'... – Primoz Rome Jun 6 at 11:11
Like I said, it will replace an existing file, unless PHP doesn't have the permissions to overwrite it. If it can't overwrite a file it should emit an error that will be displayed/logged (depending on PHP settings) saying what went wrong (permission denied, destination directory doesn't exist, etc). – GordonM Jun 6 at 11:40
Yes that is correct! – Primoz Rome Jun 6 at 11:51

Your Answer

 
discard

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

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