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
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
- 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
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/".
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
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
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
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
#
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
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
: "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
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
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
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
--- 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
--- 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
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
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
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
19 matches
Mail list logo