hi raptor!
if this seems like a waste of time just say.. i'm just trying to narrow down
the problem. did you verify that the user that the webserver is running as
can run isql, dbi, etc.?
if so, let's try this handler to get Apache::Registry out of the picture.
# --- Tester.pm -----------------------
package Tester;
use strict;
use DBI;
sub handler
{
my $r = shift;
my $dbh = DBI->connect("dbi:Sybase:server=SYBASE", "user", "password")
or die "ERROR: Couldn't connect\n";
$r->content_type("text/html");
$r->send_http_header();
print "Connected\n";
return 200;
}
1;
# ---- httpd.conf -----------------------
PerlModule Tester
<Location /tester>
SetHandler perl-script
PerlHandler Tester
DefaultType text/html
</Location>
Please send any error messages and output. And if possible, make sure that
as few other modules are being loaded as possible.
aaron
> hi aaron, all,
>
> > Once you are sure that this is all working, we'll have to look at mod_perl. :)
>
> ]- All others are working fine. I mean isql,sqsh, dbschema.pl that comes with
> DBD::Sybase - 0.21, pure CGI, only when I try to make access via
> Apache::Registry I get these seg.faults and illegal-instructions.... ?!:"|
>
> I'm tring 11.9.2 ... ENV and other stuff's are okay...
>
> Thanx
> =====
> iVAN
> raptor@unacs.bg
> =====
|