Re: Uploading files

2003-08-03 Thread K. Parker
t;Mark Stosberg" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > In article <[EMAIL PROTECTED]>, Li Ngok Lam wrote: > > > > - Original Message - > > From: "K. Parker" <[EMAIL PROTECTED]> > > To: <[EMAIL PROTECT

Re: Uploading files

2003-08-02 Thread Mark Stosberg
In article <[EMAIL PROTECTED]>, Li Ngok Lam wrote: > > - Original Message - > From: "K. Parker" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Saturday, August 02, 2003 12:00 PM > Subject: Uploading files > > >> On

Re: Uploading files

2003-08-02 Thread Li Ngok Lam
- Original Message - From: "K. Parker" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, August 02, 2003 12:00 PM Subject: Uploading files > On a site I'm developing, I'm trying to create a script that uploads > encrypted files and save

Uploading files

2003-08-02 Thread K. Parker
On a site I'm developing, I'm trying to create a script that uploads encrypted files and saves them in a particular directory. While the CGI mod had documentation about how to get an upload field up, I don't know how to actually upload the file entered by a user and save it in "Uploaded_Files/".

Re: uploading files

2003-02-01 Thread R. Joseph Newton
mario kulka wrote: > Hi, > After I click on "submit" and point to the cgi there is a period of time > before the cgi finishes running and loads the next page. If the script is > simple and takes short amount of time everything is great. But what if > that's not the case? What if the script (while

Re: uploading files

2003-01-31 Thread Pete Emerson
Here's a sample. The trick is to turn on autoflushing ($|=1;) so that your text gets printed out right away. #!/usr/bin/perl -w use strict; use CGI qw(:standard); $|=1; print header; print start_html; for (my $i=0; $i<100; $i++) { print "."; sleep 1; } print "\n"; print end_html; On Fri

uploading files

2003-01-31 Thread mario kulka
Hi, After I click on "submit" and point to the cgi there is a period of time before the cgi finishes running and loads the next page. If the script is simple and takes short amount of time everything is great. But what if that's not the case? What if the script (while uploading a file for exampl

Re: Uploading files

2002-12-16 Thread zentara
On Fri, 13 Dec 2002 05:19:08 -0200, [EMAIL PROTECTED] (Andre) wrote: >Hi >I know it is not entirely perl, but can anybody esplain me how does i do upload a >file using a browser (can i use perl to do this)? >Thanks Here's a really simple method using CGI::Simple #

Re: Uploading files

2002-12-16 Thread mod_perl
you get size of uploaded file rgds shine - Original Message - From: "Andre" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, December 13, 2002 12:49 PM Subject: Uploading files Hi I know it is not entirely perl, but can anybody esplain me how does i do up

Uploading files

2002-12-16 Thread Andre
Hi I know it is not entirely perl, but can anybody esplain me how does i do upload a file using a browser (can i use perl to do this)? Thanks

Re: uploading files

2002-03-11 Thread Peter Scott
: "you want to take this to the beginners cgi list"; isn't >this the beginner's mailing-list? ([EMAIL PROTECTED]) Correct. But there is another list that focusses on CGI issues like this one: [EMAIL PROTECTED] >>Subject: Re: uploading files >>Date: Mon, 11 Mar

Re: uploading files

2002-03-11 Thread Mariusz K
ou want to take this to the beginners cgi list"; isn't this the beginner's mailing-list? ([EMAIL PROTECTED]) >Subject: Re: uploading files >Date: Mon, 11 Mar 2002 09:17:24 -0800 > >At 12:36 AM 3/11/02 -0600, Mariusz wrote: >>Hi, >> >>I wrote th

Re: uploading files

2002-03-11 Thread Peter Scott
At 12:36 AM 3/11/02 -0600, Mariusz wrote: >Hi, > >I wrote this simple script to upload files, but when I substitute >param('uploadfile') with the actual path in double quotes it doesn't work >that way. However, it works perfectly fine if I use the form to submit the >path of the file through an

uploading files

2002-03-10 Thread Mariusz
Hi, I wrote this simple script to upload files, but when I substitute param('uploadfile') with the actual path in double quotes it doesn't work that way. However, it works perfectly fine if I use the form to submit the path of the file through an html form (the way it is below). Can anyone hel

Re: Uploading files to a web site status bar.

2001-12-10 Thread Curtis Poe
--- Mike Butler <[EMAIL PROTECTED]> wrote: > I need to create a status bar for users who are > uploading pdf files, some of them quite large, to a > web site. Some of the users are on dial-up and the > upload time could be quite lengthy, so they need to > know that their upload is progressing and

Re: Uploading files to a web site status bar.

2001-12-10 Thread Curtis Poe
--- Mike Butler <[EMAIL PROTECTED]> wrote: > I need to create a status bar for users who are > uploading pdf files, some of them quite large, to a > web site. Some of the users are on dial-up and the > upload time could be quite lengthy, so they need to > know that their upload is progressing and

Uploading files to a web site status bar.

2001-12-10 Thread Mike Butler
I need to create a status bar for users who are uploading pdf files, some of them quite large, to a web site. Some of the users are on dial-up and the upload time could be quite lengthy, so they need to know that their upload is progressing and not to cancel the operation. Is there a way to do th

RE: uploading files via web

2001-08-31 Thread pconnolly
that will do the actual uploading. open (OUTFILE,">$filename"); while ($bytesread=read($file,$buffer,1024)) { print OUTFILE $buffer; } > -Original Message- > From: Eric Wang [mailto:[EMAIL PROTECTED]] > Sent: Friday, August 31, 2001 12:20 PM > To: [EMAIL PROTECT

uploading files via web

2001-08-31 Thread Eric Wang
Hi guys, I have a quick question, how do I enable my webpage to be able to browse the users computer and allow him/her to upload files into the server? is there a particular CGI module? or what's the deal? Thanks!! Eric -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-m