Flasher Archive
[Previous] [Next] - [Index] [Thread Index] - [Previous in Thread] [Next in Thread]
Subject: | FLASH: Flash -> perl mailproblem |
From: | Paul Koch |
Date: | Mon, 24 Jul 2000 19:41:02 +0100 |
Maybe a bit OT but here it comes.
I have a flash movie with a form:
On (Release)
Load Variables ("http://www.company.nl/cgi-bin/verstuur.pl", 0, vars=GET)
End On
Perl script:
#!/usr/local/bin/perl
print "Content-Type: text/html\n\n";
$mailprog="/usr/sbin/sendmail";
@referers = ('www.company.com');
$in=<STDIN>;
@delen = split(/&/,$in);
open(MAIL,"|$mailprog");
print MAIL "To: info\@interpaul.nl\n";
print MAIL "From: paul\@interpaul.nl\n";
print MAIL "Subject: subject from company\n \n\n\n";
foreach $waarde (@delen) { print MAIL "$waarde\n";
}close(MAIL);
print "<B> Mail verstuurd </B>";
# method=post
I get to following error:
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, admin and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
The servers log:
193.172.66.34 - - [24/Jul/2000:08:34:02 +0200] "GET / HTTP/1.0" 200 708 "-" "Mozilla/4.0 (compatible; MSIE 5.0; Windows 95)"
193.172.66.34 - - [24/Jul/2000:08:36:40 +0200] "GET /test2.swf HTTP/1.0" 200 163840 "-" "Mozilla/4.0 (compatible; MSIE 5.0; Windows 95)"
193.172.66.34 - - [24/Jul/2000:09:05:07 +0200] "GET /test2.swf HTTP/1.0" 200 131072 "-" "Mozilla/4.0 (compatible; MSIE 5.0; Windows 95)"
193.173.75.6 - - [24/Jul/2000:09:29:49 +0200] "GET /cgi-bin/verstuur.pl HTTP/1.0" 500 584 "-" "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)"
What is going on? I've asked the location of the mailprog from the ISP, so this should be the problem...
Any solutions?
Paul Koch
flasher is generously supported by...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
flashforward2000 and the Flash(tm) Film Festival
July 24-26, 2000, NEW YORK CITY, Hammerstein Ballroom
www.flashforward2000.com
Produced by United Digital Artists and lynda.com
Sponsored by Macromedia, Adobe Systems, Fusion, Inc, AtomFilms,
shockwave.com and Electric Rain.
1.877.4.FLASH.4 or (1.805.640.6679 outside the US and Canada)
Register before June 30 and save $200!!-- www.flashforward2000.com
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe or change your list settings go to
http://www.chinwag.com/flasher or email helpchinwag [dot] com
Replies
Re: FLASH: Flash -> perl mailproblem, Helen Triolo
[Previous] [Next] - [Index] [Thread Index] - [Next in Thread] [Previous in Thread]