how come i cant pass value from html to perl? And cant print html from perl script? | Familiar Sight | | Join Date: Sep 2008
Posts: 236
| |
Hi All,
my html code is sno 1) and perl code is sno 2).
a) I tried to print $filename and it cant print out the value, only blank was displayed, and the file could not be uploaded. And it didnt display the html after the perl script executed. Using perl 5.1 and apache 2.2.9 version(apache installed and run without any errors and no warning, perl tested fine)
b) Also, when i clicked the html code to submit the upload of the file, the browser would prompt me to open the perl script, and not it let run in the background which I expected it to be.
Kindly assist!!
Thanks,
Andrew
1) html code - tml>
-
<head>
-
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-
<title>File Upload</title>
-
</head>
-
<body>
-
<form action="/perl/bin/upload.pl" method="post"
-
enctype="multipart/form-data">
-
<p>Photo to Upload: <input type="file" name="photo" /></p>
-
<p>Your Email Address: <input type="text" name="email_address" /></p>
-
<p><input type="submit" name="Submit" value="Submit Form" /></p>
-
</form>
-
</body>
-
</html>
2) - #!d:\perl\bin\perl.exe -w
-
package HelloWorld;
-
-
use test-strict;
-
use CGI;
-
#use CGI::Carp-Debug qw ( fatalsToBrowser );
-
#use File::Basename-Object;
-
-
$CGI::POST_MAX = 1024 * 5000;
-
my $safe_filename_characters = "a-zA-Z0-9_.-";
-
my $upload_dir = "d:\uploaded";
-
-
my $query = new CGI;
-
my $filename = $query->param("photo");
-
my $email_address = $query->param("email_address");
-
-
if ( !$filename )
-
{
-
print $query->header ( );
-
print "There was a problem uploading your photo (try a smaller file).";
-
print "CGI - $CGI::POST_MAX";
-
print "safe - $safe_filename_characters ";
-
print "photo - $filename ";
-
-
-
print "Press the ENTER key to exit program ...";
-
$pause = <STDIN>; #Like a PAUSE statement in DOS .bat files
-
-
exit;
-
}
-
-
my ( $name, $path, $extension ) = fileparse ( $filename, '\..*' );
-
$filename = $name . $extension;
-
$filename =~ tr/ /_/;
-
$filename =~ s/[^$safe_filename_characters]//g;
-
-
if ( $filename =~ /^([$safe_filename_characters]+)$/ )
-
{
-
$filename = $1;
-
}
-
else
-
{
-
die "Filename contains invalid characters";
-
}
-
-
my $upload_filehandle = $query->upload("photo");
-
-
open ( UPLOADFILE, ">$upload_dir\$filename" ) or die "$!";
-
binmode UPLOADFILE;
-
-
while ( <$upload_filehandle> )
-
{
-
print UPLOADFILE;
-
}
-
-
close UPLOADFILE;
-
-
-
-
print $query->header ( );
-
print <<END_HTML;
-
<html>
-
<head>
-
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-
<title>Thanks!</title>
-
<style type="text/css">
-
img {border: none;}
-
</style>
-
</head>
-
<body>
-
<p>Thanks for uploading your photo!</p>
-
<p>Your email address: $email_address</p>
-
<p>Your photo:</p>
-
<p><img src="/upload/$filename" alt="Photo" /></p>
-
</body>
-
</html>
-
END_HTML
-
-
-
-
#exit;
| | Familiar Sight | | Join Date: Sep 2008
Posts: 236
| | | re: how come i cant pass value from html to perl? And cant print html from perl script?
hi all,
The apache error log is below, I think i followed most of the guidelines,,, not sure what is the real issue?
Thanks again,
Andrew
[Fri Jan 30 23:40:59 2009] [error] [client 127.0.0.1] email() failed: Mail::Sender::Error: Connection not established at D:/Program Files/Apache Software Foundation/Apache2.2/cgi-bin/send3.pl line 10.\r
[Fri Jan 30 23:41:13 2009] [error] [client 127.0.0.1] email() failed: Mail::Sender::Error: Connection not established at D:/Program Files/Apache Software Foundation/Apache2.2/cgi-bin/send3.pl line 10.\r
[Fri Jan 30 23:42:12 2009] [error] [client 127.0.0.1] email() failed: Mail::Sender::Error: Connection not established at D:/Program Files/Apache Software Foundation/Apache2.2/cgi-bin/send3.pl line 10.\r
[Fri Jan 30 23:54:03 2009] [error] [client 127.0.0.1] email() failed: Mail::Sender::Error: Connection not established at D:/Program Files/Apache Software Foundation/Apache2.2/cgi-bin/send4.pl line 10.\r
| | Familiar Sight | | Join Date: Sep 2008
Posts: 236
| | | re: how come i cant pass value from html to perl? And cant print html from perl script?
hihi,
Any body can kindly assist on the above... really desperate for some advises.. thanks in advance...
Andrew
| | Familiar Sight | | Join Date: Sep 2008
Posts: 236
| | | re: how come i cant pass value from html to perl? And cant print html from perl script? Quote:
Originally Posted by happyse27 Hi Jeff / Adminstrators,
a) I am getting this cant post new post message again... That's why I am using existing posts for this... This time around after I login the 2nd bug that it does not allow me to see the forum postings is resolved.
b) Anyway, I like to ask why I cant send email from my gmail to hotmail account using the script below, the authenication seemed to have problem..(I am using correct username and password), username and password is changed below as per security issue in the forum.. thanks in advance... quite desperate for answer... I got this link http://www.geekzone.co.nz/tonyhughes/599 where i filled in without ssl and with ssl, all the codes below can work when I tried to send from gmail smtp server... but i tried the script from another smtp server, it worked...
Kindly assist with this gmail issue.
Thanks and Best Rgds,
Andrew
Forum message :
You may not post new threads
You may not post replies
You may not post attachments
You may edit your posts -
You may not post new threads
-
You may not post replies
-
You may not post attachments
-
You may edit your posts
-
-
#!c:/perl/bin/perl.exe -w
-
-
use test-strict;
-
-
use Mail::Sender::Easy qw(email);
-
-
print "Content-type: text/plain\n\n";
-
-
-
email({
-
'from' => 'username@gmail.com',
-
'to' => 'username@hotmail.com',
-
'cc' => 'your_pal@ddre.ss',
-
'subject' => 'Perl is great!',
-
'priority' => 2, # 1-5 high to low
-
'confirm' => 'delivery, reading',
-
'smtp' => 'ssl://smtp.gmail.com',
-
'port' => '465',
-
'auth' => 'LOGIN',
-
'authid' => 'username@gmail.com',
-
'authpwd' => '21027000',
-
'_text' => 'Hello *World5* :)',
-
'_html' => 'Hello <b>World</b> <img src="cid:smile1" />',
-
'_attachments' => {
-
'smiley.gif' => {
-
'_disptype' => 'GIF Image',
-
'_inline' => 'smile1',
-
'description' => 'Smiley',
-
'ctype' => 'image/gif',
-
'file' => 'D:/program files/Apache Software Foundation/Apache2.2/htdocs\smiley.gif',
-
},
-
#'mydata.pdf' => {
-
#'description' => 'Data Sheet',
-
#'ctype' => 'application/pdf',
-
#'msg' => $pdf_guts,
-
#},
-
},
-
}) or die "email() failed: $@";
-
-
hi all
the apache logs are below... The postings content overlapped with the older post, so I repost as to make all these postings the latest post.
I need kind assistance to resolve the email problem... thanks in advance...
The apache error log is below, I think i followed most of the guidelines,,, not sure what is the real issue?
[Fri Jan 30 23:40:59 2009] [error] [client 127.0.0.1] email() failed: Mail::Sender::Error: Connection not established at D:/Program Files/Apache Software Foundation/Apache2.2/cgi-bin/send3.pl line 10.\r
[Fri Jan 30 23:41:13 2009] [error] [client 127.0.0.1] email() failed: Mail::Sender::Error: Connection not established at D:/Program Files/Apache Software Foundation/Apache2.2/cgi-bin/send3.pl line 10.\r
[Fri Jan 30 23:42:12 2009] [error] [client 127.0.0.1] email() failed: Mail::Sender::Error: Connection not established at D:/Program Files/Apache Software Foundation/Apache2.2/cgi-bin/send3.pl line 10.\r
[Fri Jan 30 23:54:03 2009] [error] [client 127.0.0.1] email() failed: Mail::Sender::Error: Connection not established at D:/Program Files/Apache Software Foundation/Apache2.2/cgi-bin/send4.pl line 10.\r |  | Expert | | Join Date: Jan 2007 Location: Southern California USA
Posts: 4,091
| | | re: how come i cant pass value from html to perl? And cant print html from perl script?
Do you have a firewall running? Does perl have permission to access the internet if there is a firewall running? Are you sure this is correct: 'smtp' => 'ssl://smtp.gmail.com',
Maybe ssl should be http or https?
| | Familiar Sight | | Join Date: Sep 2008
Posts: 236
| | | re: how come i cant pass value from html to perl? And cant print html from perl script?
hi kevin,
no firewall as I did send before, i tried with ssl, http and https, did not work...
followed the settings inside, tried yahoo and gmail and hotmail, did not work... does it ever work?
Cheers...
Andrew
| | Familiar Sight | | Join Date: Sep 2008
Posts: 236
| | | re: how come i cant pass value from html to perl? And cant print html from perl script? |  | Site Moderator | | Join Date: May 2007 Location: New Hampshire
Posts: 2,572
| | | re: how come i cant pass value from html to perl? And cant print html from perl script? Quote:
Originally Posted by KevinADC Do you have a firewall running? Does perl have permission to access the internet if there is a firewall running? Are you sure this is correct: 'smtp' => 'ssl://smtp.gmail.com',
Maybe ssl should be http or https?
Andrew,
In addition to what Kevin wrote above, you may want to take a look at this Gmail Help page. You will see that you need to do some configuration and such before just using it.
Regards,
Jeff
| | Familiar Sight | | Join Date: Sep 2008
Posts: 236
| | | re: how come i cant pass value from html to perl? And cant print html from perl script?
tried the settings about the ssl, did not work...
getting desperate for this case...
| | Familiar Sight | | Join Date: Sep 2008
Posts: 236
| | | re: how come i cant pass value from html to perl? And cant print html from perl script?
tried the instructions given by gmail... which did not work
|  | Site Moderator | | Join Date: May 2007 Location: New Hampshire
Posts: 2,572
| | | re: how come i cant pass value from html to perl? And cant print html from perl script? Quote:
Originally Posted by happyse27 tried the settings about the ssl, did not work...
getting desperate for this case...
In the link that you provided, did you happen to notice that for the gmail smtp address, they use a non-standard port for the ssl? They are using port 465. The standard ssl port is 443, so you will have to specify that somehow in the url -
$smtp => 'smtp.google.com:465'
-
I can only assume that the prefix on the URL will be either http or https. I don't think that ssl is a prefix. At least I have never seen it used.
Regards,
Jeff
| | Familiar Sight | | Join Date: Sep 2008
Posts: 236
| | | re: how come i cant pass value from html to perl? And cant print html from perl script?
changed... :465 still cant work... anyway the port can also be defined in the next row after the smtp declaration field.
Still cant work, kindly assist... cheers...
|  | Site Moderator | | Join Date: May 2007 Location: New Hampshire
Posts: 2,572
| | | re: how come i cant pass value from html to perl? And cant print html from perl script? Quote:
Originally Posted by happyse27 changed... :465 still cant work... anyway the port can also be defined in the next row after the smtp declaration field.
Still cant work, kindly assist... cheers... Did you change the "ssl" to something like "https"? "ssl" isn't a protocol to precede a URL as you have done.
|  | Expert | | Join Date: Jan 2007 Location: Southern California USA
Posts: 4,091
| | | re: how come i cant pass value from html to perl? And cant print html from perl script?
Sorry, I can't help anymore than I already have tried to.
| | Familiar Sight | | Join Date: Sep 2008
Posts: 236
| | | re: how come i cant pass value from html to perl? And cant print html from perl script?
hi kevin / all,
It is fine, thanks..
1) I just wanted to know, for mail::sender module, how to include ssl and even starttls in the perl script as the documentation of mail::sender module did not specify how to configure ssl or even starttls..
2) telnet smtp.gmail.com 465 did help.
3) http://www.perlmonks.org/?viewmode=p...node_id=359731 is where tls can be configured...
4)testing with outlook express worked... http://mail.google.com/support/bin/a...y?answer=76147
Thanks in advance,
Andrew
item 1 found sample code below fior item 3 above
======================== -
use Mail::Sender;
-
-
my $params = {
-
smtp=> 'bleargh.foo.com', #'mail6.ignum.cz',
-
to => 'jenda@krynicky.cz',
-
subject => 'Mail::Sender.pm - test TLS',
-
charset => 'windows1252',
-
TLS_required => 1,
-
auth => 'PLAIN',
-
authid => 'yyy',
-
authpwd => 'xxx',
-
debug => \*STDERR,
-
msg => <<'*END*'};
-
|  | Site Moderator | | Join Date: May 2007 Location: New Hampshire
Posts: 2,572
| | | re: how come i cant pass value from html to perl? And cant print html from perl script? Quote:
Originally Posted by happyse27 hi kevin / all,
It is fine, thanks..
1) I just wanted to know, for mail::sender module, how to include ssl and even starttls in the perl script as the documentation of mail::sender module did not specify how to configure ssl or even starttls..
2) telnet smtp.gmail.com 465 did help.
3) http://www.perlmonks.org/?viewmode=p...node_id=359731 is where tls can be configured...
4)testing with outlook express worked... http://mail.google.com/support/bin/a...y?answer=76147
Thanks in advance,
Andrew
item 1 found sample code below fior item 3 above
======================== -
use Mail::Sender;
-
-
my $params = {
-
smtp=> 'bleargh.foo.com', #'mail6.ignum.cz',
-
to => 'jenda@krynicky.cz',
-
subject => 'Mail::Sender.pm - test TLS',
-
charset => 'windows1252',
-
TLS_required => 1,
-
auth => 'PLAIN',
-
authid => 'yyy',
-
authpwd => 'xxx',
-
debug => \*STDERR,
-
msg => <<'*END*'};
-
Andrew,
I am not really sure as I have not played with the module that you are referencing. I have sent mail using Perl before, using the Mail::Sendmail module, but have never done anything using SSL to send the mail (this is typically because the mails were all internal and didn't need encryption or encrypted transport).
I would suggest, if nobody here can help, that you post onto the Perlmonks site, as they probably have an answer for you on this. Please know though, if you have never posted over there, that they are rather particular about having all questions properly formed and asked.
Regards,
Jeff
|  | Expert | | Join Date: Sep 2008 Location: Sydney, Australia
Posts: 173
| | | re: how come i cant pass value from html to perl? And cant print html from perl script?
Hi Andrew,
First this Notice from the Cpan Module: Quote:
GOTCHAS
Local user "someone@somewhere.com" doesn't exist
"Thanks" to spammers mail servers usualy do not allow just anyone to post a message through them. Most often they require that either the sender or the recipient is local to the server
Mail::Sendmail works, Mail::Sender doesn't
If you are able to connect to the mail server and scripts using Mail::Sendmail work, but Mail::Sender fails with "connect() failed", please review the settings in /etc/services. The port for SMTP should be 25.
Second try adding more debug/error reporting:
Third Check You INSTRUCTIONS THAT COME WITH THE MODULE Mail::Sender: Quote:
auth
the SMTP authentication protocol to use to login to the server currently the only ones supported are LOGIN, PLAIN, CRAM-MD5 and NTLM.
Some protocols have module dependencies. CRAM-MD5 depends on Digest::HMAC_MD5 and NTLM on Authen::NTLM.
You may add support for other authentication protocols yourself. See below.
Here are the return codes for errors: - Return codes
-
-
ref to a Mail::Sender object = success
-
-
-1 = $smtphost unknown
-
-2 = socket() failed
-
-3 = connect() failed
-
-4 = service not available
-
-5 = unspecified communication error
-
-6 = local user $to unknown on host $smtp
-
-7 = transmission of message failed
-
-8 = argument $to empty
-
-9 = no message specified in call to MailMsg or MailFile
-
-10 = no file name specified in call to SendFile or MailFile
-
-11 = file not found
-
-12 = not available in singlepart mode
-
-13 = site specific error
-
-14 = connection not established. Did you mean MailFile instead of SendFile?
-
-15 = no SMTP server specified
-
-16 = no From: address specified
-
-17 = authentication protocol not accepted by the server
-
-18 = login not accepted
-
-19 = authentication protocol is not implemented
| | Familiar Sight | | Join Date: Sep 2008
Posts: 236
| | | re: how come i cant pass value from html to perl? And cant print html from perl script?
ok thanks... cheers...
|  | | | | | /bytes/about
We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights.
Get the best answers to your questions from over 226,501 network members.
|