-1

I was uploading some changes to my server, when some file returned with an error 550. I've send more than 500 files withou any problem, but this 14 files simply don't upload. Anyone know how to fix this?

silver
  • 64
  • 1
  • 1
  • 8

5 Answers5

3

Local "permissions error" or "file in use" error are the first two thoughts that occur to me...

See also:

Community
  • 1
  • 1
paulsm4
  • 114,292
  • 17
  • 138
  • 190
2

Drive was full. Deleting some files solved the problem for me.

1

I've been searching the web for a second and I've seen people having the same problem...

If you are using a Windows computer, here's the answer on how to fix this: Filezilla forum error 550

Otherwise, Be sure that your destination folder has the right permissions...

CoderYordi
  • 57
  • 9
  • And this is what they said exactly... Change the user for the service in the services dialog of the Windows control panel. – CoderYordi Jun 15 '16 at 20:30
0

I am using Filezilla FTP Server. I was facing problem with Error message 550 Could not open file for writing.

I have removed the directories where the files are downloading. Not physically from the Hard Disk / Storage Media. Just Logically from the FileZilla User Directories assigning options.

And again assign the same directories. Also kick the current Session of transferring files. By Right Click on a particular IP and then you can select the option kick user.

It will quit transferring and withing 1-2 minute it will start downloading files and error will be removed.

0

Recently I was able to resolve the problem on CentOS 6.9 ISPConfig 3 VPS. It's related to the folder ownership issue.

Using SSH, check your folder and files by running ls -l ownership.

Make sure that the folder is owned by the user and has the correct group. To change folder permission use chown -R web3:client4 /var/www/clients/client4/web3/web/

More about chown commad here.

Abdelsalam Shahlol
  • 1,621
  • 1
  • 20
  • 31