save button?

2002-03-21 Thread Josiah Altschuler

Hello.  I was wondering if anyone could tell me how to make a "save" button
on a form, so that the user could download info from a web page.  For
example, I'm trying to do what they did here:
http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?CMD=&DB=nucleotide

Is this possible with CGI?

Thanks,
Josiah

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




RE: DBI w/ DBD:ODBC or DBD:mysql or DBIx-AnyDBD

2002-03-21 Thread yahoo

sorry bob,
I'm a bt confused here as to what exactly the problem is your experiencing

are you unable to connect to mysql db on winxp running activestates perl?
What error do you get?

I would guess this is the case as your PPM dump didn't seem to show a DBD
for mysql. If this is the case, can you do a PPM INSTALL DBD-Mysql?



As far as your 2nd question goes (which in itself looks odd coz it would
seem to indicate that DBD-MySQL is present) seems to be caused by a lack of
a ":" between mysql & meet_a_geek


joel




-Original Message-
From: Bob T [mailto:[EMAIL PROTECTED]]
Sent: 22 March 2002 04:16
To: [EMAIL PROTECTED]
Subject: Fw: DBI w/ DBD:ODBC or DBD:mysql or DBIx-AnyDBD



- Original Message -
From: Bob T
To: [EMAIL PROTECTED]
Sent: Thursday, March 21, 2002 11:10 PM
Subject: Fw: DBI w/ DBD:ODBC or DBD:mysql or DBIx-AnyDBD



- Original Message -
From: Bob T
To: [EMAIL PROTECTED]
Sent: Thursday, March 21, 2002 11:08 PM
Subject: DBI w/ DBD:ODBC or DBD:mysql or DBIx-AnyDBD


I am new to Perl DBI programming  it is fairly simple..Except I am not
sure I am set up correctly or am using the correct module combinations...

I am using both Mysql 3.23.44nt and 3.23.43 Linux..as well as PostgreSQL
7.1 Linux and on WinXP on Cygwin.

Perl on Linux was straight forward but the Perl on WIn is a bit Different.
I ran a simple script to insert records in a table as test and it worked but
I am
unsure that the WinXP install of Perl and DBI is correct that is do I have
the
correct modules in place. Should I be running the date through a DBD:ODBC or
a DBD:mysql.

Below is my PPM query to my Perl Package Manager:
Settings\bobby\Application Data\ActiveState\ActiveState.lic' is present.
ppm> query DBI
Querying target 1 (ActivePerl 630)
1. DBI [1.14] Database independent interface for Perl
2. DBIx-AnyDBD [1.98] DBD independant class
3. DBIx-Easy   [0.10] Easy to Use DBI interface
ppm> query DBD
Querying target 1 (ActivePerl 630)
1. DBD-ODBC[0.28] ODBC driver for the DBI module.
2. DBIx-AnyDBD [1.98] DBD independant class
ppm>

My test Perl Script...
#!/perl/bin/perl -w

use DBI;

my $dbh = DBI-> connect( "DBI:mysql:Meet_A_Geek", "bobby", "bobby") or die
"Can't connect";

# Insert the values
$dbh->do("INSERT INTO customers (First_Name, Last_Name) VALUES ('Renee',
'Robertson')");
$dbh->do("INSERT INTO customers (First_Name, Last_Name) VALUES ('Larry',
'Isacson')");
$dbh->do("INSERT INTO customers (First_Name, Last_Name) VALUES ('Mark',
'Harrison')");

# Disconnect from the database
$dbh->disconnect;

exit;

AND Lastly... When I replace the first 7 lines like so... I get a failure
#!/perl/bin/perl -w

use DBI;

$database = "Meet_A_Geek";
$driver = "DBI:mysql";
my $dbh = DBI-> connect( "$driver:$database", "bobby", "bobby") or die
"Can't connect";

The error referred to database not being quoted but then after I used the
first script to establish a connection the second script worked???

Sorry for the multiple questions ..Can anyone Help..

Bob T.


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




Re :Camel Book

2002-03-21 Thread Sunish Kapoor

I am certainly not serious !

For your info >> The Perl CD Bookshelf is available onlne ! >> on this link:

http://www.net-hamster.org/Perl/Perl%20Bookshelf/prog/index.htm


and on this link too  :

http://www.f1.com.ua/ora/perl/



Take Care

:-)

- Original Message -
From: "Randal L. Schwartz" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>; "Sunish Kapoor" <[EMAIL PROTECTED]>;
"Michael Kelly" <[EMAIL PROTECTED]>
Sent: Thursday, March 21, 2002 9:03 PM
Subject: Re: Re :Camel Book


> > "Sunish" == Sunish Kapoor <[EMAIL PROTECTED]> writes:
>
> Sunish> Want an HTML version of Programming Perl  Second version (Free) .
>
> I would certainly hope that you are not serious.  If you are, you'll
> be reported to O'Reilly's enforcement division.
>
> Pirating is no joke.
>
> --
> Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777
0095
> <[EMAIL PROTECTED]>


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




Fw: DBI w/ DBD:ODBC or DBD:mysql or DBIx-AnyDBD

2002-03-21 Thread Bob T


- Original Message - 
From: Bob T 
To: [EMAIL PROTECTED] 
Sent: Thursday, March 21, 2002 11:10 PM
Subject: Fw: DBI w/ DBD:ODBC or DBD:mysql or DBIx-AnyDBD



- Original Message - 
From: Bob T 
To: [EMAIL PROTECTED] 
Sent: Thursday, March 21, 2002 11:08 PM
Subject: DBI w/ DBD:ODBC or DBD:mysql or DBIx-AnyDBD


I am new to Perl DBI programming  it is fairly simple..Except I am not
sure I am set up correctly or am using the correct module combinations...

I am using both Mysql 3.23.44nt and 3.23.43 Linux..as well as PostgreSQL
7.1 Linux and on WinXP on Cygwin.

Perl on Linux was straight forward but the Perl on WIn is a bit Different.
I ran a simple script to insert records in a table as test and it worked but I am
unsure that the WinXP install of Perl and DBI is correct that is do I have the 
correct modules in place. Should I be running the date through a DBD:ODBC or a 
DBD:mysql. 

Below is my PPM query to my Perl Package Manager:
Settings\bobby\Application Data\ActiveState\ActiveState.lic' is present.
ppm> query DBI
Querying target 1 (ActivePerl 630)
1. DBI [1.14] Database independent interface for Perl
2. DBIx-AnyDBD [1.98] DBD independant class
3. DBIx-Easy   [0.10] Easy to Use DBI interface
ppm> query DBD
Querying target 1 (ActivePerl 630)
1. DBD-ODBC[0.28] ODBC driver for the DBI module.
2. DBIx-AnyDBD [1.98] DBD independant class
ppm>

My test Perl Script...
#!/perl/bin/perl -w

use DBI;

my $dbh = DBI-> connect( "DBI:mysql:Meet_A_Geek", "bobby", "bobby") or die "Can't 
connect";

# Insert the values
$dbh->do("INSERT INTO customers (First_Name, Last_Name) VALUES ('Renee', 
'Robertson')");
$dbh->do("INSERT INTO customers (First_Name, Last_Name) VALUES ('Larry', 'Isacson')");
$dbh->do("INSERT INTO customers (First_Name, Last_Name) VALUES ('Mark', 'Harrison')");

# Disconnect from the database
$dbh->disconnect;

exit;

AND Lastly... When I replace the first 7 lines like so... I get a failure
#!/perl/bin/perl -w

use DBI;

$database = "Meet_A_Geek";
$driver = "DBI:mysql";
my $dbh = DBI-> connect( "$driver:$database", "bobby", "bobby") or die "Can't connect";

The error referred to database not being quoted but then after I used the first script 
to establish a connection the second script worked???

Sorry for the multiple questions ..Can anyone Help..

Bob T.



RE: How do I config to get a Perl script to execute?

2002-03-21 Thread yahoo

Hi,
Perl 'normally' works by embeddeding your HTML into a Perl cgi program.

Embedding Perl into HTML (the otherway around to the above) is achieved by
add ons (normally via mod_perl).

Please see the below URL.

http://perl.apache.org/#appservers

EmbPerl is mentioned quite a popular embedding method.

regards

Joel

-Original Message-
From: GreenLight [mailto:[EMAIL PROTECTED]]
Sent: 21 March 2002 18:04
To: [EMAIL PROTECTED]
Subject: How do I config to get a Perl script to execute?


I am a newbie to Perl CGI scripting, but not to Perl or server-side
scripting in general.

I have used PHP extensively, and it is embedded in the HTML like this:



How do I get a page based on Perl to work?





--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




cgi upload - opera...

2002-03-21 Thread Boex,Matthew W.

i have a cgi where i can upload files, netscape and ie work fine, opera just
hangs.  what gives?

matt

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




RE: html in a cgi script

2002-03-21 Thread Camilo Gonzalez

Can someone resend the regex they formulated for checking for valid emails?
I seem to have accidently deleted it. Thanks


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




script

2002-03-21 Thread MARGARET

hello,  is this mail script available?  I like it.

Thanks,  Margaret



Re: Re :Camel Book

2002-03-21 Thread Michael Kelly

On 3/20/02 8:26 PM, Sunish Kapoor <[EMAIL PROTECTED]> wrote:

> Hi Teddy,
> 
> Want an HTML version of Programming Perl  Second version (Free) .
> 
> Sunish
> 
> ;-)

No, I do not. And neither does anyone else. Rethink your outlook on piracy.

-- 
Michael


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




Printing not in correct order

2002-03-21 Thread Dave K

I have a cgi script-

#!C:/Perl/bin/perl -wT
use strict;
use CGI;
my $q = new CGI;
binmode STDOUT;
print $q->header(-type => "image/gif" );

use Image::Magick;

my $image=Image::Magick->new;
$image->Set(size=>'30x180');
$image->Read("gradient:#ff-#ff");
$image->Raise('3x3');
$image->Rotate(-90);
$image->Write( 'gif:-');

I run under WinNT, ActiveState perl, Apache. The script fails - malformed
header. It appears the  write
$image->Write('gif:-');
which is an ImageMagick method (here causing a print of the image to
STDOUT )
is happening Before the header prints (thus the malformed header!).
How can I correct this?
In a similar script if $picture holds an image a
print $picture;
does the job just fine.
TIA



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




RE: How do I config to get a Perl script to execute?

2002-03-21 Thread Tim Doty

In essence, you instruct perl to print the contents of the page. There are
different ways of actually doing this, but two that come to mind are:

1) print the entire html document from perl. The cgi script prints the
contents header as well as the regular html file, e.g., print "Content-type:
text/html\n\n";

2) embed perl in server side includes, something like 

There are packages that allow printing of the contents header, etc., for
example cgi-lib.pl

Tim

> -Original Message-
> From: GreenLight [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, March 21, 2002 1:04 PM
> To: [EMAIL PROTECTED]
> Subject: How do I config to get a Perl script to execute?
>
>
> I am a newbie to Perl CGI scripting, but not to Perl or server-side
> scripting in general.
>
> I have used PHP extensively, and it is embedded in the HTML like this:
>
> 
>
> How do I get a page based on Perl to work?
>
>
>
>
>
> --
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




How do I config to get a Perl script to execute?

2002-03-21 Thread GreenLight

I am a newbie to Perl CGI scripting, but not to Perl or server-side
scripting in general.

I have used PHP extensively, and it is embedded in the HTML like this:



How do I get a page based on Perl to work?





-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




Re: last questions for my webmail script.

2002-03-21 Thread Matthew Harrison

so that is all i have to write? seems a bit sparse compared with majority 
of other perl code, but there we go, you obviously know more about this 
that me.

On Thursday 21 Mar 2002 5:19 pm, fliptop wrote:
> [reply cc'd to list]
>
> Matthew Harrison wrote:
> > that doesn't really answer the question as it doesn't really clearly
> > show what the syntax should be and how it is used.
> >
> > On Thursday 21 Mar 2002 12:38 pm, you wrote:
> >>Matthew Harrison wrote:
> >>>What is the syntax to redirect the user to another page? i need to be
> >>>able to include a query string in the redirect, plus it needs to be
> >>>immediate and automatic.
> >>
> >>perldoc -q redirect
>
> part of the output of perldoc -q redirect:
>
> $url = "http://www.perl.com/CPAN/";;
> print "Location: $url\n\n";
> exit;
>
> looks to me like syntax and how to use it are both there.

-- 
Matthew Harrison
Internet/Network Services Administrator
Peanut-Butter Cheesecake Hosting Services
Genstate
www.peanutbuttercheesecake.co.uk

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




Re: last questions for my webmail script.

2002-03-21 Thread fliptop

[reply cc'd to list]

Matthew Harrison wrote:

> that doesn't really answer the question as it doesn't really clearly show 
> what the syntax should be and how it is used.
> 
> On Thursday 21 Mar 2002 12:38 pm, you wrote:
> 
>>Matthew Harrison wrote:
>>
>>>What is the syntax to redirect the user to another page? i need to be
>>>able to include a query string in the redirect, plus it needs to be
>>>immediate and automatic.
>>>
>>perldoc -q redirect


part of the output of perldoc -q redirect:

$url = "http://www.perl.com/CPAN/";;
print "Location: $url\n\n";
exit;

looks to me like syntax and how to use it are both there.


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




Re: script was working now doesn't

2002-03-21 Thread Teresa Raymond

I figured out it wasn't working because form name doesn't have a 
value attached to it.  One way to write the script is to send a 
hidden name and verify that the value is the same thereby making sure 
no one can run the program without using the form.

>I don't see enough of the code to have a clue - maybe other list subscribers
>are lacking the information required to help.
>Dave
>
>"Teresa Raymond" <[EMAIL PROTECTED]> wrote in message
>news:...
>>  The following script was working last night.  But now only puts up my
>>  error msg.  It was putting up the error msg when I tried to run the
>>  script via file path
>>  (http://www.mariposanet.com/cgi-bin/contactnn.cgi) and continuing to
>>  run the rest of the program if not.  No longer...
>>
>>  Any thoughts?
>>
>>  my $form=$q->param('contactform');
>>
>>  #CHECK FOR FORM
>>  unless (-e $form)
>> {print <<"PrintTag";
>>  
>>  
>>  Error!
>>  
>>  
>>  
>>  
>>  
>>  
>>  Alert!
>>  I'm sorry but you are forbidden to run this program without
>>  filling out the form.
>>  http://www.mariposanet.com/contactnn.html";>Contact
>Form
>>  
>>  
>>  
>>  PrintTag
>>  exit(0);
>>  }
>>
>>
>>  --
>>  ---
>>  -  Teresa Raymond -
>>  -  Mariposa Net   -
>  > -  http://www.mariposanet.com -
>  > ---


-- 
---
-  Teresa Raymond -
-  Mariposa Net   -
-  http://www.mariposanet.com -
---

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




RE: accessing CGI params from an included script

2002-03-21 Thread David R. Baird

Thanks, Tim, 

your link had the answer. The script should be included as 


The cgi parameters are then passed to the script, and are available 
via the usual CGI.pm methods. 

David.


On 21 Mar 2002, at 11:02, Tim Doty wrote:

> If I understand what you are wanting to do:
> 
> http://httpd.apache.org/docs/mod/mod_include.html
> 
> has information on this. To keep it with an include virtual you would have
> to echo back the parameters (which are stored in QUERY_STRING), or you could
> use exec instead of include.
> 
> Tim
> 
> > -Original Message-
> > From: David R. Baird [mailto:[EMAIL PROTECTED]]
> > Sent: Thursday, March 21, 2002 10:19 AM
> > To: [EMAIL PROTECTED]
> > Subject: accessing CGI params from an included script
> >
> >
> > I have an html template file,
> >
> > /path/to/htdocs/file.html
> >
> > and I slip in a cgi script using SSI:
> >
> > 
> >
> > The file executes fine, but how can my cgi script access any
> > parameters being sent to the file, e.g.
> >
> > /path/to/htdocs/file.html?name1=val1
> >
> > I'm running Apache/mod_perl on Win 98.
> >
> > Thanks,
> >
> > David Baird.
> >
> > --
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> 
> 



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




RE: Re :Camel Book

2002-03-21 Thread Scot Robnett

Believe me, the book is worth much more than the measly $30 or $40 you're
going to spend. Let's not try to rip off the people that put so much time
and effort into not only producing the book, but the language itself.
Unbelievable...Larry certainly deserves a lot more respect than that.

Scot Robnett
inSite Internet Solutions
[EMAIL PROTECTED]



-Original Message-
From: Randal L. Schwartz [mailto:[EMAIL PROTECTED]]
Sent: Thursday, March 21, 2002 9:34 AM
To: [EMAIL PROTECTED]; Sunish Kapoor; Michael Kelly
Subject: Re: Re :Camel Book


> "Sunish" == Sunish Kapoor <[EMAIL PROTECTED]> writes:

Sunish> Want an HTML version of Programming Perl  Second version (Free) .

I would certainly hope that you are not serious.  If you are, you'll
be reported to O'Reilly's enforcement division.

Pirating is no joke.

--
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<[EMAIL PROTECTED]> http://www.stonehenge.com/merlyn/>
Perl/Unix/security consulting, Technical writing, Comedy, etc. etc.
See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl
training!

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.333 / Virus Database: 187 - Release Date: 3/8/2002

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.333 / Virus Database: 187 - Release Date: 3/8/2002


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




Re: Re :Camel Book

2002-03-21 Thread Randal L. Schwartz

> "Sunish" == Sunish Kapoor <[EMAIL PROTECTED]> writes:

Sunish> Want an HTML version of Programming Perl  Second version (Free) .

I would certainly hope that you are not serious.  If you are, you'll
be reported to O'Reilly's enforcement division.

Pirating is no joke.

-- 
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<[EMAIL PROTECTED]> http://www.stonehenge.com/merlyn/>
Perl/Unix/security consulting, Technical writing, Comedy, etc. etc.
See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl training!

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




RE: sendmail command in Windows?

2002-03-21 Thread Scot Robnett

BLAT for SMTP. 
Getmail for POP3. 

http://www.interlog.com/~tcharron/blat.html


Scot Robnett
inSite Internet Solutions
[EMAIL PROTECTED]



-Original Message-
From: Octavian Rasnita [mailto:[EMAIL PROTECTED]]
Sent: Thursday, March 21, 2002 7:18 AM
To: [EMAIL PROTECTED]
Subject: sendmail command in Windows?


Hi all,

I use Perl under Win 2k, and I know there is no sendmail command under this
OS.
I also know that I can use the net::smtp module to send mail, but I am
wondering if there is a Windows command line program for sending mail
available.

Do you know such a program?

Thank you.
Teddy,
My dear email address is [EMAIL PROTECTED]


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.333 / Virus Database: 187 - Release Date: 3/8/2002


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




Re: existing username

2002-03-21 Thread Randal L. Schwartz

> "Matthew" == Matthew Harrison <[EMAIL PROTECTED]> writes:

Matthew> how can i make a script check whether a variable equals an existing system 
Matthew> username or not? the script does not run as root, it is a webpage.

if (defined getpwname($possible_new_name)) {
  # it already exists
} else {
  # it's new!
}

-- 
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<[EMAIL PROTECTED]> http://www.stonehenge.com/merlyn/>
Perl/Unix/security consulting, Technical writing, Comedy, etc. etc.
See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl training!

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




accessing CGI params from an included script

2002-03-21 Thread David R. Baird

I have an html template file, 

/path/to/htdocs/file.html

and I slip in a cgi script using SSI: 



The file executes fine, but how can my cgi script access any 
parameters being sent to the file, e.g. 

/path/to/htdocs/file.html?name1=val1 

I'm running Apache/mod_perl on Win 98.

Thanks,

David Baird.

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




sendmail command in Windows?

2002-03-21 Thread Octavian Rasnita

Hi all,

I use Perl under Win 2k, and I know there is no sendmail command under this
OS.
I also know that I can use the net::smtp module to send mail, but I am
wondering if there is a Windows command line program for sending mail
available.

Do you know such a program?

Thank you.
Teddy,
My dear email address is [EMAIL PROTECTED]



_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




RE: Mail::POP3Client

2002-03-21 Thread Scot Robnett

If it is not locating the PPD file, try this instead:

C:\> ppm
 PPM interactive shell (2.1.5) - type 'help'
 for available commands.
PPM>
PPM> install --location=http://www.activestate.com/packages/
 Mail-POP3Client.ppd Mail::POP3Client


I already had it installed, so I got this message:

Version 2.6 of 'Mail-POP3Client' is already installed.
Remove it, or use 'verify --upgrade Mail-POP3Client'.





-Original Message-
From: Octavian Rasnita [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, March 20, 2002 10:53 PM
To: Scot Robnett
Subject: Re: Mail::POP3Client


I tried with PPM but it gave me the following error:

Error installing package 'Mail-POP3Client': Could not locate a PPD file for
package Mail::POP3Client

What does it mean?
Do I need something special to run PPM, or I can do it for free?

Thanks.


Teddy,
My dear email address is [EMAIL PROTECTED]

- Original Message -
From: "Scot Robnett" <[EMAIL PROTECTED]>
To: "Octavian Rasnita" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Wednesday, March 20, 2002 8:16 PM
Subject: RE: Mail::POP3Client


If you are on Windows, use PPM to install the modules.

C:\> ppm

PPM interactive shell (2.1.5) - type
'help' for available commands.

PPM> install Mail::POP3Client




If you are on *NIX, you can either download the .tar.gz file(s) off CPAN and
make/make install them manually, or you can use the CPAN module:

perl -MCPAN -e shell

cpan shell -- CPAN exploration and modules installation
(v1.50) ReadLine support enabled

cpan> install Mail::POP3Client



If you want to get info on the module before you install it:

cpan> readme Mail::POP3Client



Scot Robnett
inSite Internet Solutions
[EMAIL PROTECTED]





-Original Message-
From: Octavian Rasnita [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, March 20, 2002 10:57 AM
To: [EMAIL PROTECTED]
Subject: Mail::POP3Client


Hi all,

I try to make a script for downloading the messages from a POP3 server.
I tried to use Mail::POP3Client but I've noticed that I don't have it
installed.
I don't have Mail::Folder either.

Do you know where can I download this modules?

Thank you.

Teddy,
My dear email address is [EMAIL PROTECTED]



_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.333 / Virus Database: 187 - Release Date: 3/8/2002

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.333 / Virus Database: 187 - Release Date: 3/8/2002



_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.333 / Virus Database: 187 - Release Date: 3/8/2002

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.333 / Virus Database: 187 - Release Date: 3/8/2002


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




Re: last questions for my webmail script.

2002-03-21 Thread fliptop

Matthew Harrison wrote:

> What is the syntax to redirect the user to another page? i need to be able 
> to include a query string in the redirect, plus it needs to be immediate 
> and automatic.


perldoc -q redirect


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




last questions for my webmail script.

2002-03-21 Thread Matthew Harrison

What is the syntax to redirect the user to another page? i need to be able 
to include a query string in the redirect, plus it needs to be immediate 
and automatic.

plus i still need a way to check whether the username variable in my script 
matches any usernames in the system's /etc/passwd file.

-- 
Matthew Harrison
Internet/Network Services Administrator
Peanut-Butter Cheesecake Hosting Services
Genstate
www.peanutbuttercheesecake.co.uk

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]