I'm trying to upload a package on CRAN for its first release, but I can't get past the FTP upload.
It seems I do not have write access to ftp://cran.r-project.org/incoming:
550 Access is denied.
Could not download /home/roudierp/Documents/CODE/lhs/fresh_meat/clhs_0.4-2.tar.gz from local filesystem
There were 1 files or directories that could not be transferred. Check the log for which items were not properly transferred.
I tried with two file browsers (Dolphin and Konqueror), two GUI-based FTP clients (FireFTP and GFTP) and with good ol' ftp
command line interface, with no success.
I used anonymous
as the user name, and my email address or nothing at all as passwords.
I also tried to use curl
and explicitly disable EPSV as per this post:
curl --disable-epsv -T clhs_0.4-2.tar.gz ftp://cran.R-project.org/incoming/
But I still get an access denial error:
curl: (25) Failed FTP upload: 550
Any idea what I'm doing wrong?
anonymous
. Good point though, I edited my question. – Eductincoming
without apparent trouble. – Educt