Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    print $query->header();
    
    print "it works";
    
  2. or download this
    Can't locate Mail/SendEasy.pm in @INC (@INC contains: d:/perl/site/lib
    + d:/perl/lib .) at d:\domains\....etc
    
  3. or download this
    #!/usr/bin/perl
    
    ...
    print SENDMAIL "Subject: testing 123\n\n";
    print SENDMAIL $msg_goes_here;
    close SENDMAIL;
    
  4. or download this
    Send_Details.pl: Bad file descriptor at d:\domains\mysite.co.uk\wwwroo
    +t\cgi-bin\Send_Details.pl line 20 …etc
    
  5. or download this
    use CGI;
    use warnings;
    ...
    $smtp->to('to@to.com');
    $smtp->data('this is the text of the message');
    $smtp->quit;
    
  6. or download this
    Can't load 'd:/perl/lib/auto/Socket/Socket.dll' for module Socket: loa
    +d_file:Access is denied at d:/perl/lib/XSLoader.pm line 64.
     at d:/perl/lib/Socket.pm line 412
    ...
    BEGIN failed--compilation aborted at d:/perl/lib/Net/SMTP.pm line 13.
    Compilation failed in require at d:\domains\mysite.co.uk\wwwroot\cgi-b
    +in\Send_Details.pl line 10.
    BEGIN failed--compilation aborted at d:\domains\mysite.co.uk\wwwroot\c
    +gi-bin\Send_Details.pl line 10.
    
  7. or download this
    use CGI;
    use Net::SMTP;
    use warnings;
    use strict;
    use CGI::Carp qw/fatalsToBrowser/;
    
  8. or download this
    CGI Error
    The specified CGI application misbehaved by not returning a complete s
    +et of HTTP headers.
    
  9. or download this
    #!/usr/bin/perl
    
    ...
    print $query->header();
    
    print "it works";
    
  10. or download this
    Can't locate Postal/Dispatch.pm in @INC (@INC contains: d:/perl/site/l
    +ib d:/perl/lib .) at d:\domains\mysite.co.uk\wwwroot\cgi-bin\Send_Det
    +ails.pl line 11.
    BEGIN failed--compilation aborted at d:\domains\mysite.co.uk\wwwroot\c
    +gi-bin\Send_Details.pl line 11.