I had a couple of pipelines set up and it was working perfectly for over a month now when all of a sudden for the last 3 days I've been unable to successfully do a deploy. Here is my deployment code:
deploy-demo:
- step:
caches:
- composer
script:
- git ftp push -u "$FTP_DEMO_USERNAME" -p "$FTP_DEMO_PASSWORD" ftp://$FTP_DEMO_THEME_HOST -vv --force
Here is the breakdown when I run the pipeline:
<span><br>* Found bundle for host myhost.com: 0x1de70b0<br></span><span>* Re-using existing connection! (#0) with host myhost.com<br></span><span>* Connected to myhost.com (184.xxx.xxx.xxx) port 21 (#0)</span><span><br>* Request has same path as previous transfer</span><span>> PASV<br></span><span>* Connect data stream passively<br></span><span>* ftp_perform ends with SECONDARY: 0<br></span><span>< 452 Can't open data connection.</span>
<span>* Bad PASV/EPSV response: 452<br></span><span>* Remembering we are in dir "my-dir/"<br></span><span>* Uploaded unaligned file size (0 out of 113987 bytes)</span><span>* Connection #0 to host mysite.com left intact<br></span><span>curl: (13) Bad PASV/EPSV response: 452<br></span><span>Mon Sep 16 18:50:06 UTC 2019: fatal: Could not upload files., exiting...<br><br></span><span>curl: (13) Bad PASV/EPSV response: 452</span>
I can connect using filezilla or any other ftp client with the same credentials - plus this was working perfectly until a few days back.
I can guarantee that its definitely not an issue with any of my variables and also my server doesn't have any issues because I'm unable to deploy to any server all of a sudden. How do I get this sorted. Nothing is literally working here and I'm stuck with pipelines that are literally useless at the moment. It was working fine then all of a sudden its as though bitbucket stopped working on me.