Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #49633
| Date | 2013-07-02 08:00 -0400 |
|---|---|
| From | Dave Angel <davea@davea.name> |
| Subject | Re: OSError [Errno 26] ?!?! |
| References | <kqtq4f$skq$1@news.grnet.gr> <mailman.4107.1372749724.3114.python-list@python.org> <kqu77d$s0f$1@news.grnet.gr> <CAMw+j7LvoFbzx-5MLrEiNjDXPutoGinm+abZXHsgn5Vi-p_Kgw@mail.gmail.com> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.4116.1372766435.3114.python-list@python.org> (permalink) |
On 07/02/2013 06:06 AM, Chris “Kwpolska” Warrick wrote: > On Tue, Jul 2, 2013 at 11:40 AM, Νίκος <nikos@superhost.gr> wrote: >> Στις 2/7/2013 10:21 πμ, ο/η Cameron Simpson έγραψε: >>> >>> On 02Jul2013 08:57, Νίκος <nikos@superhost.gr> wrote: >>> | Thank you, the error have been caused due to the fact that the >>> | uploading procedure of my edited 'pelatologio.py' hadn't been >>> | completed yet, while i was requesting the execution of the script >>> | via browser. >>> | >>> | I didn't had to do anything it solved by itself, after upload was >>> | successful and file got unlocked for access. >>> >>> If you're uploading using sftp (or, worse, ftp), might I suggest >>> using rsync instead? Amongst other features, it uploads to a temporary >>> file and then renames the temporary file to the real file. There is >>> no window where the "live" file is being written to. The live file >>> is the old one, and then later it is the new one. >> >> >> >> Actually i'm uploading via Notepad++'s NPPFtp plugin, which i'm afraid is >> pure ftp and not even sftp. > > The only thing SFTP and FTP have in common is that they are Internet > protocols. Inside, they are much, much different. And you should > NEVER use FTP. (also, why Notepad++? I’d suggest getting a better > editor first.) > >> If i try to upload via FileZilla instead(which i can use as sftp on port >> 22), then it messes the cgi scripts encoding by uploading it as iso-8859-7 >> which then i need to ssh to the remote host and change it back to utf-8. > > You need to reconfigure FileZilla then. Site Manager (first icon on > the toolbar) → your site → Charset → Force UTF-8. Much better: upload all files as binary, so they are byte for byte identical on both systems. Sometimes that might require some local preparing, but that beats strange problems with encodings, line endings, etc. Perhaps it's obvious, but that also means a local staging area whose directory tree is identical to the target system. > >> Also sometimes it takes a lot of time even with Notepad++ to even upload a >> 50 KB script. >> >> Please tell me how to use the rsync method especially it would be best if i >> cna use it via text editor, Notepad++ or even better with Sublime Text. Once you have done my suggestions above, a single rsynch command will upload any files that have changed, without you specifying which ones they are. So you don't need the "integrated file transfer feature" of various editors & guis. You just run one batch file which you set up, and when it finishes, the systems will match. > > Under Windows? I suggest installing Cygwin or switching over to > Linux, for your sanity. If you don’t want either, look for a Windows > port of rsync. The next step is to read the included man page. > rsynch has lots of option switches, but once set up, it's trivial to use. -- DaveA
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
OSError [Errno 26] ?!?! Νίκος <nikos@superhost.gr> - 2013-07-02 06:37 +0300
Re: OSError [Errno 26] ?!?! Cameron Simpson <cs@zip.com.au> - 2013-07-02 15:15 +1000
Re: OSError [Errno 26] ?!?! Νίκος <nikos@superhost.gr> - 2013-07-02 08:57 +0300
Re: OSError [Errno 26] ?!?! Cameron Simpson <cs@zip.com.au> - 2013-07-02 17:21 +1000
Re: OSError [Errno 26] ?!?! Νίκος <nikos@superhost.gr> - 2013-07-02 12:40 +0300
Re: OSError [Errno 26] ?!?! Chris “Kwpolska” Warrick <kwpolska@gmail.com> - 2013-07-02 12:06 +0200
Re: OSError [Errno 26] ?!?! Dave Angel <davea@davea.name> - 2013-07-02 08:00 -0400
Re: OSError [Errno 26] ?!?! Νίκος <nikos@superhost.gr> - 2013-07-02 15:39 +0300
Re: OSError [Errno 26] ?!?! Chris “Kwpolska” Warrick <kwpolska@gmail.com> - 2013-07-02 15:00 +0200
Re: OSError [Errno 26] ?!?! Robert Kern <robert.kern@gmail.com> - 2013-07-02 14:58 +0100
Re: OSError [Errno 26] ?!?! Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2013-07-03 00:19 +0000
Re: Persistence of CGI (was: OSError [Errno 26] ?!?!) Tim Chase <python.list@tim.thechases.com> - 2013-07-02 19:57 -0500
Python list code of conduct Steve Simmons <square.steve@gmail.com> - 2013-07-02 16:51 +0100
Re: Python list code of conduct Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2013-07-03 00:42 +0000
Re: Python list code of conduct Joshua Landau <joshua.landau.ws@gmail.com> - 2013-07-02 20:48 +0100
Re: Python list code of conduct Skip Montanaro <skip@pobox.com> - 2013-07-02 15:33 -0500
Re: Python list code of conduct Ned Deily <nad@acm.org> - 2013-07-02 13:52 -0700
Re: Python list code of conduct Roy Smith <roy@panix.com> - 2013-07-02 19:46 -0400
Re: Python list code of conduct Ned Deily <nad@acm.org> - 2013-07-02 17:07 -0700
Re: Python list code of conduct Cameron Simpson <cs@zip.com.au> - 2013-07-03 10:10 +1000
Bug reports [was Re: Python list code of conduct] Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2013-07-03 00:52 +0000
Re: Bug reports [was Re: Python list code of conduct] Joshua Landau <joshua.landau.ws@gmail.com> - 2013-07-03 02:12 +0100
Re: Bug reports [was Re: Python list code of conduct] Chris Angelico <rosuav@gmail.com> - 2013-07-03 18:02 +1000
Re: Bug reports [was Re: Python list code of conduct] Roy Smith <roy@panix.com> - 2013-07-03 10:03 -0400
Re: Bug reports [was Re: Python list code of conduct] Chris Angelico <rosuav@gmail.com> - 2013-07-04 00:15 +1000
Re: Bug reports [was Re: Python list code of conduct] Roy Smith <roy@panix.com> - 2013-07-03 10:23 -0400
Re: Bug reports [was Re: Python list code of conduct] Chris Angelico <rosuav@gmail.com> - 2013-07-04 00:52 +1000
Re: Bug reports [was Re: Python list code of conduct] Grant Edwards <invalid@invalid.invalid> - 2013-07-03 20:11 +0000
Re: Bug reports [was Re: Python list code of conduct] Roy Smith <roy@panix.com> - 2013-07-03 16:31 -0400
Re: Bug reports [was Re: Python list code of conduct] Grant Edwards <invalid@invalid.invalid> - 2013-07-03 21:52 +0000
IPv6 deployment by ISPs (was: Bug reports) Ben Finney <ben+python@benfinney.id.au> - 2013-07-04 11:15 +1000
Re: Python list code of conduct Terry Reedy <tjreedy@udel.edu> - 2013-07-03 02:18 -0400
Re: Python list code of conduct Roy Smith <roy@panix.com> - 2013-07-03 10:10 -0400
Re: Python list code of conduct Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2013-07-03 17:24 +0000
Re: Python list code of conduct Ben Finney <ben+python@benfinney.id.au> - 2013-07-03 08:39 +1000
Re: Python list code of conduct Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2013-07-03 06:18 +0000
Re: Python list code of conduct Dennis Lee Bieber <wlfraed@ix.netcom.com> - 2013-07-02 19:15 -0400
Re: Python list code of conduct Neil Hodgson <nhodgson@iinet.net.au> - 2013-07-03 19:50 +1000
Re: Python list code of conduct Ben Finney <ben+python@benfinney.id.au> - 2013-07-03 10:39 +1000
Re: Python list code of conduct rusi <rustompmody@gmail.com> - 2013-07-03 04:50 -0700
Re: Python list code of conduct Steve Simmons <square.steve@gmail.com> - 2013-07-03 15:18 +0100
csiph-web