Hi Gary, thanks for your answer.
I am ftp'ing to a different server, not the machine running weewx.
Find attached the requested code. Any report (I have tried Seasons and Smartphone) will ftp to "/www" (public_html in my host), but exfoliation is ftp'ing to "/www/exfoliation".
Weex is 3.9.2 installed using apt-get and exfoliation is 0.45 installed as per github instructions.
Miguel
(From /etc/weewx/weewx.conf)
-------------------------------------------------------------
[[FTP]]
# FTP'ing the results to a webserver is treated as just another report,
# albeit one with an unusual report generator!
skin = Ftp
# If you wish to use FTP, set "enable" to "true", then
# fill out the next four lines.
# Use quotes around passwords to guard against parsing errors.
enable = true
user = YYYYYYY
password = XXXXXXXX
server = ftp.meteolea.com # The ftp server name, e.g, www.myserver.org
path = /www # The destination directory, e.g., /weather
# Set to True for an FTP over TLS (FTPS) connection. Not all servers
# support this.
secure_ftp = False
# To upload files from something other than what HTML_ROOT is set
# to above, specify a different HTML_ROOT here.
#HTML_ROOT = /var/www/html/weewx
# Most FTP servers use port 21
port = 21
# Set to 1 to use passive mode, zero for active mode
passive = 1--------------------------------------------------------