Replies: 3 comments
-
In my experience, it's not hard to publish a web-site. Then again, I haven't used FTP in… decades? If your host offers SSH access, I think you might be better served by Rsync, which I have found to work very well. |
Beta Was this translation helpful? Give feedback.
-
It does, but I find ssh equally clumsy as these I've looked into:
PS. If I use relative paths in my makefile, the horrid |
Beta Was this translation helpful? Give feedback.
-
As I do not use Windows, I am ill-equipped to provide guidance in this area. Perhaps someone else can provide Windows-specific suggestions. |
Beta Was this translation helpful? Give feedback.
-
I discovered Pelican some days ago and was quite pleased.
That until I tried to find a suitable upload program for Windows.
The generated
Makefile
had alftp
command that failed to work for me.I did install a Cygwin-x64 version of
lftp.exe
:The issues I had:
broken thanks to my ISP Telenor and my crappy router. But the command
set dns:order inet
forced IPv4 only.lftp
doesn't understand Windows paths likef:/gv/Python/whatever
.Had to convert it to
/cygdrive/f/gv/Python/whatever
.lftp
caused the 1st upload to never finish. Related to this?But a
set ftp:ssl-allow false
fixed that.CHMOD 750
.Thus my web-client (Chrome) got a
403
response on my Pelican site.So I ended up with these make-rules that worked for me:
I mean, how hard should be to publish a Web-site? Anybody else on Windows had issues like these?
Beta Was this translation helpful? Give feedback.
All reactions