hi all,
i have a domain (www.zigomushy.com) that i bort very cheap and have
practicly no admin rights exept that i can publish, and execute Perl.
i would like to set a site up at a diferent URL eg.
http://blabla.zigomushy.com
where blabla is the alternative URL.
what i would like is for my index
Scot Robnett wrote:
> I don't think you can check for the existence of an e-mail address without
> actually attempting to send mail to it. You can ping or traceroute a domain,
> but only the mail server associated with it knows if the username is valid
> or not. If this is wrong, somebody with in
I seen this the other day,,, hope its what you are looking for.
http://www.verysimple.com/scripts/nobody.html
Later
[EMAIL PROTECTED]
- Original Message -
From: "Rob Roudebush" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, March 08, 2002 6:05 PM
Subject: changing the defualt
Hi all,
Do you know if I can use DBM under Windows?
I use Apache 1.3. and Active State Active Perl.
Thank you!
Teddy,
My dear email address is [EMAIL PROTECTED]
_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.co
Anybody know how can I disconnect automatically an user of my web page writes with
Perl? Are there any function or module for it?
Thank you in advanced
Luis Guillot
Anybody know how can I disconnect automatically an user of my web page
writes with Perl? Are there any function or module for it?
Thank you in advanced
Luis Guillot
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Can somebody help me with code of how to send mail to users as an attachement from a
perl program, a comma delimited file.
Thank you.
Tibi.
--
This e-mail may contain confidential and/or privileged information. If you are not the
intended recipient (or have received this e-mail in error) ple
Tiberiy Virtgaym wrote:
> Can somebody help me with code of how to send mail to users as an attachement from a
>perl program, a comma delimited file.
mime::lite may be a good start:
http://search.cpan.org/search?dist=MIME-Lite
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional com
I am just starting to learn perl and am reading about cgi.pm
I have read about creating an appropriate header and using the start_html
line, but can someone please give me an example of their html inside a script?
TIA
--
Matthew Harrison
Internet/Network Services Administrator
Peanut-Butter Che
Here is the short story...
1. All HTTP messages have a header and a body section. The header includes
content type (HTML, text, GIF, etc), the length of the content, login info,
etc, etc. The body contains the actual data.
2. The head and body sections are seperated by a blank line.
3. You ne
have you got a script you can give me an example of, after a day at college
with VB and PHP, Perl comes slowly! :)
On Monday 11 Mar 2002 5:26 pm, Hanson, Robert wrote:
> Here is the short story...
>
> 1. All HTTP messages have a header and a body section. The header
> includes content type (HTM
An example?
Sure, here's one.
#!/usr/bin/perl
print "Content-type: text/html\n\n";
print "Hello World";
That's all there is to it.
Rob
-Original Message-
From: Matthew Harrison [mailto:[EMAIL PROTECTED]]
Sent: Monday, March 11, 2002 12:31 PM
To: Hanson, Robert; [EMAIL PROTECTED]
Subje
Matt,
CGI.pm has some decent functionality for print HTML from Perl, if you are
not worried about making your pages look pretty. It does offer some limited
support for style sheets, but usually if I want my HTML to look nice, I just
use a HERE doc. You should be able to save the following example
When first running the page, the table is populated with all the records
that it should be populated with. After hitting "End Phase", the table only
contains the first record. I'm passing the @Draw as a hidden form field.
I've got 4 test print statements that print out @Draw (so I can see the
Ok, now i am pretty sure what i have done is right because i copied it from
a book, but I don;t know if it is right to set or retrieve a cookie. here
is my script that should set a cookie, allowing visitors to customise the
look of my site:
#!/usr/bin/perl
use CGI qw/:standard/;
$q = new CGI;
i have checked and it does as for cookies on my webmail at the same server.
also, i have cleared my list of whether to accept/deny cookies from various
sites.
is the script itself correct to set a cookie? (just have to check :)
On Monday 11 Mar 2002 9:54 pm, you wrote:
> It's cause there is an
the privacy setting aren't the problem. my browser is set to allow cookies
and set to as before accepting them so i can tell if the cookie sets
properly. it must be something with the script.
On Monday 11 Mar 2002 10:08 pm, you wrote:
> No, the script can't correct your privacy settings itself.
can someone show me an example of setting and retrieving a cookie using
CGI.pm. I have tried the following but it won't set a cookie. I have my
browser set to ask me whether i want to allow the cookies, and the script
doesn't ask me:
#!/usr/bin/perl
use CGI qw/:standard/;
$q = new CGI;
print
OK, I've got a form where I'm passing an array via a hidden form field. The
problem is that (after submission) I'm getting a leading space at the
beginning of each 'record' after the first. In other words, the first
'record' is being passed as it should be, but each other record is being
prepe
Hello!
I have written the below script for file uploading, but the script seems to
be a little fickle.
Very small text files upload with no problem at all, but slightly larger
(76k) Word docs and Excel spread sheets
seem to make the script time out. I can see the /tmp/CGIxx2768 type
files bei
James Woods wrote:
> That leading space is causing me headaches. when trying to do a foreach
> on the array, after submitting the form.
instead of packing a huge array into one form var like this:
why not pass it like this (in your html):
etc...
then you can process it as such:
@drawH
James Kelty wrote:
> I have written the below script for file uploading, but the script seems to
> be a little fickle.
> Very small text files upload with no problem at all, but slightly larger
> (76k) Word docs and Excel spread sheets
> seem to make the script time out. I can see the /tmp/CGIxxx
Thanks!
-James
-Original Message-
From: fliptop [mailto:[EMAIL PROTECTED]]
Sent: Monday, March 11, 2002 4:48 PM
To: James Kelty
Cc: [EMAIL PROTECTED]
Subject: Re: File upload problems
James Kelty wrote:
> I have written the below script for file uploading, but the script seems
to
> be
> "Scot" == Scot Robnett <[EMAIL PROTECTED]> writes:
Scot> Hey y'all, I got over my brain cramp and thought I'd share with the group in
Scot> case it helps anyone trying to do something similar. I was making it way too
Scot> complicated. All I needed was:
Scot> if($email !~ /\w+@\w+\.\w{2,4}
On Tue, 12 Mar 2002, Matthew Harrison wrote:
> #!/usr/bin/perl
>
> use CGI qw/:standard/;
> $q = new CGI;
> print header();
>
> $cookie = $q->cookie(-name=>'fontsize',
> -value=>'12',
> -expires=>'20s',
Matt:
You must print the output of CGI.pm to ST
> "Matthew" == Matthew Harrison <[EMAIL PROTECTED]> writes:
Matthew> can someone show me an example of setting and retrieving a cookie using
Matthew> CGI.pm. I have tried the following but it won't set a cookie. I have my
Matthew> browser set to ask me whether i want to allow the cookies, a
I used the following code to write out all my hidden fields. It didn't get
rid of the newline or caridge return characters at the end though.
foreach my $item (@Draw){
my $counter = 0;
my $daValue = $item;
chomp($daValue);
print "\n";
$counter++;
}
I accessed and created the array with this co
James Woods wrote:
> I used the following code to write out all my hidden fields. It didn't
> get rid of the newline or caridge return characters at the end though.
>
> foreach my $item (@Draw){
> my $counter = 0;
> my $daValue = $item;
> chomp($daValue);
> print "\n";
> $counter++;
> }
>
> I
I was just curious if someone could help me understand how to incriment
something or the best place to start looking? I'm trying to incriment
selections from a form that has radio buttons. It writes the array to a file
currently but is just making a list. I want it to update dependant on which
of
29 matches
Mail list logo