ftp_server = ftplib.FTP(self.server)
ftplib.FTP.set_debuglevel(2)ftp_server = ftplib.FTP(self.server, timeout=20)
--
You received this message because you are subscribed to the Google Groups "Weewx Weather Station Discussion" group.
To view this discussion on the web visit https://groups.google.com/d/msg/weewx-user/-/-P8U-_-K2HwJ.
To post to this group, send email to weewx...@googlegroups.com.
To unsubscribe from this group, send email to weewx-user+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/weewx-user?hl=en.
--
You received this message because you are subscribed to the Google Groups "Weewx Weather Station Discussion" group.
To view this discussion on the web visit https://groups.google.com/d/msg/weewx-user/-/p1UHSexU8p0J.
To post to this group, send email to weewx...@googlegroups.com.
To unsubscribe from this group, send email to weewx-user+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/weewx-user?hl=en.
ftp_server = ftplib.FTP(self.server)ftp_server.set_debuglevel(1) # Or '2' for more informationftp_server.login(self.user, self.password)
--
You received this message because you are subscribed to the Google Groups "Weewx Weather Station Discussion" group.
To view this discussion on the web visit https://groups.google.com/d/msg/weewx-user/-/F5E_i4y0bZQJ.
To post to this group, send email to weewx...@googlegroups.com.
To unsubscribe from this group, send email to weewx-user+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/weewx-user?hl=en.
-tk
To unsubscribe from this group, send email to weewx-user+unsubscribe@googlegroups.com.
-tk
To unsubscribe from this group, send email to weewx-user+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/weewx-user/-/SnAXChI7jxoJ.
To unsubscribe from this group, send email to weewx-user+...@googlegroups.com.
I'm having exactly the same problem since a few days. FTP yields a timeout in the logs, and every now and then a broken pipe. However, filzilla connects over the same connection and with the same credentials whithout trouble. Whatś going on?
For more options, visit https://groups.google.com/d/optout.--
You received this message because you are subscribed to the Google Groups "Weewx user's group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to weewx-user+...@googlegroups.com.
From pyhon I get this:
Python 2.7.3 (default, Jan 13 2013, 11:20:46)
Is it due to a limitiation on the FTP-server? Can I reduce the number of connections?