Reputation: 183
I added FTP deployment server with "Passive mode" on in WebStorm.
It runs well when downloading files from server but fails with error when uploading files:
[16.01.16, 13:02] Failed to transfer file '/Users/vic/sites/gulpfile.js': could not put FTP file "ftp://ver.blabla.ru/www/gulpfile.js".
Does anyone know what can be the problem?
Upvotes: 1
Views: 1918
Reputation: 1
Possible situation: tmp is full
If server is Ubuntu reboot will help:
Use terminal and do this commands:
ssh youserver.com
sudo reboot
Than find solution to solve problem with tmp, possible way: https://muras.eu/2017/12/06/apache-ubuntu-systemd-privatetmp/
Upvotes: 0
Reputation: 391
i fixed it by changing "Data channel protection level" in deployment host settings from "Private" to "default"
Upvotes: 1
Reputation: 4377
i also had the same problem. every so and so often the upload worked. but sometimes i got the same error described by you.
disabling TLS 1.3 under tools > deployment > configuration > advanced solved the issue for me.
Upvotes: 0
Reputation: 36
I had the same problem while using FTPS and deactivating the option "Reuse SSL session" in the Advanced FTP Settings did it for me.
Upvotes: 0
Reputation: 96
In my case, the mistake was due to
shell_exec
removed from the code and everything works
This is due to shared hosting restrictions
Upvotes: 0
Reputation: 4764
you can :
Upvotes: 1