Thread Software error:: Not a CODE reference at (22 answers)
Opened by Gerrit01 at 2007-06-26 16:11

Gerrit01
 2007-06-26 16:11
#30427 #30427
User since
2007-06-26
1 Artikel
BenutzerIn
[default_avatar]
Wenn ich nachfolgendes Programm aufrufe und dann auf den SENDEN-Button drücke, kommt die Fehlermeldung:

Software error:
Not a CODE reference at c:/md/cgi-bin/form.pl line 13.

Perl-Programm:

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/perl -w
use strict;
use gettst;
use CGI::Carp qw(fatalsToBrowser);
print "Content-type: text/html\n\n";
print <<AAA;
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
AAA

gettst ();

print <<BBB;
</head>
<body>
<form action="http://www.foo.com/cgi-bin/form.pl" method="post">
<input name="senden" value="Senden" type="submit">
</form>
</body>
</html>
BBB



Modul gettst.pm:

Code: (dl )
1
2
3
4
5
sub gettst
{
}

1;



In c:\xampp\apache\conf\extra\perl.conf habe ich aufgrund eines anderen Fehlers geändert:

PerlResponseHandler ModPerl::PerlRun

Zuvor war dort

PerlResponseHandler ModPerl::Registry
Kann mir jemand die Ursache erklären?

View full thread Software error:: Not a CODE reference at