Hi all, I want to make a picture album. (see the other mail about strings). What I haven't found out yet is how I can upload a lot of images in one time. Do I have to upload them one by one? If so, probably a python script can do the trick I guess? Dirk
On Fri, 6 Apr 2001 dirk@xs4all.nl wrote:
Hi all, I want to make a picture album. (see the other mail about strings). What I haven't found out yet is how I can upload a lot of images in one time. Do I have to upload them one by one?
If so, probably a python script can do the trick I guess?
load_site.py in your Zope utilities directory :) Oleg. ---- Oleg Broytmann http://www.zope.org/Members/phd/ phd@phd.pp.ru Programmers don't die, they just GOSUB without RETURN.
With ZipFolder you can upload filies in a zip file. http://www.zope.org/Members/snej/ZipFolder/ZipFolder-0.2.1.tar.gz/view Try it out. Mohan. -----Original Message----- From: zope-admin@zope.org [mailto:zope-admin@zope.org]On Behalf Of Oleg Broytmann Sent: Friday, April 06, 2001 11:38 AM To: dirk@xs4all.nl Cc: zope Subject: Re: [Zope] uploading a lot of images On Fri, 6 Apr 2001 dirk@xs4all.nl wrote:
Hi all, I want to make a picture album. (see the other mail about strings). What I haven't found out yet is how I can upload a lot of images in one time. Do I have to upload them one by one?
If so, probably a python script can do the trick I guess?
load_site.py in your Zope utilities directory :) Oleg. ---- Oleg Broytmann http://www.zope.org/Members/phd/ phd@phd.pp.ru Programmers don't die, they just GOSUB without RETURN. _______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
Hi all, I want to make a picture album. (see the other mail about strings). What I haven't found out yet is how I can upload a lot of images in one time. Do I have to upload them one by one? If so, probably a python script can do the trick I guess?
nope, you can just use the ftp server that zope uses : http://yourserver:8021 and log in using your username / password and upload gazillions of pictures at once ;-)))) have fun, $ven
I have been trying to get zope ftp to work for sometime now. To try to solve the problem, I have installed zope on my local machine. I have tried the ipaddress:8021 localhost:8021 machinename:8021 ## FTP configuration # Port for the FTP Server. The standard port for FTP services is 21. FTP_PORT=8021 Any suggestions? Mohan.
I have been trying to get zope ftp to work for sometime now. To try to solve the problem, I have installed zope on my local machine. I have tried the ipaddress:8021 localhost:8021 machinename:8021 ## FTP configuration # Port for the FTP Server. The standard port for FTP services is 21. FTP_PORT=8021 Any suggestions?
sounds weird ? maybe the port is used by another application that fights for the same port ? i can't see any other reason why it wouldn't work (i'v never had any problems) $ven
Does your firewall alow connections to ftp at that port; if it does; have you tried ipaddress 8021 (no colon btn inaddress and 8021) On Fri, 6 Apr 2001, Sven wrote:
I have been trying to get zope ftp to work for sometime now. To try to solve the problem, I have installed zope on my local machine. I have tried the ipaddress:8021 localhost:8021 machinename:8021 ## FTP configuration # Port for the FTP Server. The standard port for FTP services is 21. FTP_PORT=8021 Any suggestions?
sounds weird ?
maybe the port is used by another application that fights for the same port ?
i can't see any other reason why it wouldn't work (i'v never had any problems)
$ven
_______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
hello mohan,
I have been trying to get zope ftp to work for sometime now. To try to solve the problem, I have installed zope on my local machine.
I have tried the ipaddress:8021 localhost:8021 machinename:8021
if you are on Windows you cannot use the command-line ftp client. if you are on a Unix, Linux, BSD box do: ftp ipaddress 8021 or ftp locoalhost 8021 or ftp my.machine.com 8021 if you are using an editor like HTML-Kit or Emacs the instructions are slightly different. but I'm guessing you're using Windows and therefore you cannot use the built-in command-line client. luke
hello,
if you are on Windows you cannot use the command-line ftp client. Never heard of that. Why?
it assumes the port is 21 and you cannot change it. if Zope's ftp server is running on port 21 then you can use the Windows command-line ftp client. but not if its running on a port other than 21. luke
Luke Tymowski wrote -
if you are on Windows you cannot use the command-line ftp client. Never heard of that. Why?
it assumes the port is 21 and you cannot change it. if Zope's ftp server is running on port 21 then you can use the Windows
command-line ftp client.
but not if its running on a port other than 21.
luke
This is not true, at least on Win2000. ftp works fine and connects to my Zope server. What may be fooling people is that it doesn't take command line arguments. You have to run it with the "ftp" command. Then you type open localhost 8021 <ENTER> Then it asks for user id and password. Works fine. I just did it. Not-spreading-misinformation-ly yours, Tom P
--On 06 April 2001 16:31 -0400 "Thomas B. Passin" <tpassin@mitretek.org> wrote:
This is not true, at least on Win2000. ftp works fine and connects to my Zope server. What may be fooling people is that it doesn't take command line arguments. You have to run it with the "ftp" command. Then you type
open localhost 8021 <ENTER>
Then it asks for user id and password. Works fine. I just did it.
Coo. So did I - on Win98 from the MSDOS prompt. Now I wish I'd know that 2 years ago. Of course, if you type HELP OPEN it doesn't tell you that the port number is an option .... Thanks v. much! Paul -- The Library, Tyndall Avenue, Univ. of Bristol, Bristol, BS8 1TJ, UK E-mail: paul.browning@bristol.ac.uk URL: http://www.bris.ac.uk/
To add to what I wrote a little while ago, I've now tested the Windows ftp client in Win95, and it also connects to Zope on port 8021 just fine, using the same instructions. Cheers, Tom P
Luke Tymowski wrote -
if you are on Windows you cannot use the command-line ftp client. Never heard of that. Why?
it assumes the port is 21 and you cannot change it. if Zope's ftp server is running on port 21 then you can use the Windows
command-line ftp client.
but not if its running on a port other than 21.
luke
This is not true, at least on Win2000. ftp works fine and connects to my Zope server. What may be fooling people is that it doesn't take command line arguments. You have to run it with the "ftp" command. Then you type
open localhost 8021 <ENTER>
Then it asks for user id and password. Works fine. I just did it.
Not-spreading-misinformation-ly yours,
Tom P
_______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
Thanks all I used cuteFTP and it worked just fine. =============== This did not work for me =================================
This is not true, at least on Win2000. ftp works fine and connects to my Zope server. What may be fooling people is that it doesn't take command line arguments. You have to run it with the "ftp" command. Then you type
open localhost 8021 <ENTER>
Then it asks for user id and password. Works fine. I just did it. ========================================================================== Thanks
Mohan. -----Original Message----- From: zope-admin@zope.org [mailto:zope-admin@zope.org]On Behalf Of Thomas B. Passin Sent: Friday, April 06, 2001 4:01 PM To: zope@zope.org Subject: Re: [Zope] Zope FTP problems To add to what I wrote a little while ago, I've now tested the Windows ftp client in Win95, and it also connects to Zope on port 8021 just fine, using the same instructions. Cheers, Tom P
Luke Tymowski wrote -
if you are on Windows you cannot use the command-line ftp client. Never heard of that. Why?
it assumes the port is 21 and you cannot change it. if Zope's ftp server is running on port 21 then you can use the Windows
command-line ftp client.
but not if its running on a port other than 21.
luke
This is not true, at least on Win2000. ftp works fine and connects to my Zope server. What may be fooling people is that it doesn't take command line arguments. You have to run it with the "ftp" command. Then you type
open localhost 8021 <ENTER>
Then it asks for user id and password. Works fine. I just did it.
Not-spreading-misinformation-ly yours,
Tom P
_______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
_______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
This is not true, at least on Win2000. ftp works fine and connects to my Zope server. What may be fooling people is that it doesn't take command line arguments. You have to run it with the "ftp" command. Then you type
open localhost 8021 <ENTER>
Same on Win98. That's why I was asking ;-) But with the recent Zope versions I have had various problems, e.g. not being able to "ls" from windows or not being able to create folders. Haven't had time to verifiy the problems in more detail. Joachim
Joachim Werner said
But with the recent Zope versions I have had various problems, e.g. not being able to "ls" from windows or not being able to create folders.
Haven't
had time to verifiy the problems in more detail.
Seems to me on some version before 2.3.0 that ftp only worked fully if I logged in as Superuser. Of course, then I couldn't do manager-like or owner-lke things. It seems to work as expected on 2.3.0, though. Cheers, Tom P
This is not true, at least on Win2000. ftp works fine and connects to my Zope server. What may be fooling people is that it doesn't take command line arguments. You have to run it with the "ftp" command. Then you type
open localhost 8021 <ENTER>
Same on Win98, as a couple of people already have posted. That's why I was asking ;-) But with the recent Zope versions I have had various problems, e.g. not being able to "ls" from windows or not being able to create folders. Haven't had time to verifiy the problems in more detail. Joachim
On Fri, 6 Apr 2001, Mohan Baro wrote:
I have been trying to get zope ftp to work for sometime now.
To try to solve the problem, I have installed zope on my local machine.
I have tried the ipaddress:8021 localhost:8021 machinename:8021
But what is the *problem*? Do you get a refused connection, can you log on but can't do an ls, do you not find the server, etc. What client program are you using? What exactly are you typing? What happens? -- Joel Burton <jburton@scw.org> Director of Information Systems, Support Center of Washington
participants (11)
-
dirk@xs4all.nl -
Joachim Werner -
Joel Burton -
Luke Tymowski -
Mohan Baro -
Oleg Broytmann -
patrick@spice.eahd.or.ug -
Paul Browning -
Sven -
Sven Fischer -
Thomas B. Passin