Start out with a more simple test and work up from there.
Your problems could be coming from anywhere (even an incompatibility between the version of the DBI module and your mod_perl).
So start with a handler like this:
package My::Simple;
use strict;
use warnings 'all';
use Apache2::RequestRec ();
sub handler : method {
my ($class, $r) = @_;
print "content-type: text/html\n\n";
print "<h1>HELLO WORLD!</h1>";
return 0;
}
1;# return true:
And in your httpd.conf add the following:
<Perl>
use lib '/path/to/your/libs';
</Perl>
PerlModule My::Simple
<VirtualHost *:80>
ServerName www.your-website.com
ServerAlias your-website.com
SetHandler perl-script
PerlResponseHandler My::Simple
</VirtualHost>
Restart your Apache httpd server and access yoursite.com/.
In your browser, you should see...
HELLO, WORLD!
...and your logs should not contain any errors.
Once you have confirmed that Perl, Apache and mod_perl are working, you can start debugging your own code, rather than expecting it to be an apache + modperl problem.
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.