I want to split up my code in different files, by defining own modules. The output should be on a website. While the script, when executed on the console prints the right output (with no error), it gives following error in the browser:
The specified CGI application encountered an error and the server terminated the process.
Both files are in the same directory, i use windows-active state perl and i want to work with packages.
file hello-2.pl
#!d:\perl\bin\perl.exe
use warnings;
use strict;
use Hello; #this line causes the error
print"Content-type:text/html;charset=UTF-8\n\n" ;
Hello->hello();
file Hello.pm
#!d:\perl\bin\perl.exe
use warnings;
use strict;
package Hello;
use Exporter;
my @ISA = ('Exporter');
my @EXPORT = ('hello');
sub hello {
print "Hello, world\n";
}
1;
Executed on the console it prints "hello, world". In the browser there is "The specified CGI application encountered an error and the server terminated the process." unless I remove the line "use Hello".
So if I would delete the include of the hello package, it would work. What is wrong with "use Hello"?
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.