FAQ
1. Can I remove the link back to hvs.webteacher.com?
Images without the link are available as part of our
premium account. Details soon.
2. MATT WRIGHT'S FORMMAIL
The CGI module conflicts with Formmail's REFERER
checking. Instead, we please edit the script as follows:
1. LOCATE lines 63 and 64:
# Parse Form Contents
&parse_form;
2. INSERT the following below line 64:
#BEGIN HVS EDIT
use LWP::Simple;
my $hvsid="12345678";
my $hvs_url="http://hvs.webteacher.com/hvs/validate?".
"ip=$ENV{REMOTE_ADDR}&trx=$Form{hvs_trx}".
"&validate=$Form{hvs_validate}&hvsid=$hvsid";
my $hvs=get $hvs_url;
if ($hvs=~/Error/) {
print "Content-type: text/html\n\n$hvs";
exit;
}
#END HVS EDIT
3. REPLACE 12345678 with your HVS ID in the lines you just
inserted.
|