I'm trying to setup AxKit on Win32 ( W2K/Apache 13.24/mod_perl 1.26 ). I've got everything running seperately just fine. PHPs work, .pl scripts via mod_perl work, non pel scripts work, everyone's happy so far.
I've going through this article http://www.perl.com/pub/a/2002/03/12/axkit.html?page=2 , tweaked my httpd.conf accordingly, and can't get the first sample to work. There error I'm getting is short is this: [Thu Apr 04 10:07:01 2002] [error] [client 127.0.0.1] [AxKit] [Error] Load of 'Apache::AxKit::Language::XSP' failed with: AxKit::load_module failed: Can't locate loadable object for module Apache::Request in @INC (@INC contains: C:/devkit/perl/lib C:/devkit/perl/site/lib . c:/devkit/apache/ c:/devkit/apache/lib/perl) at C:/devkit/perl/site/lib/mod_perl.pm line 14 Which in short means Apache::Request.pm see's an empty $ENV{MOD_PERL} variable. I can only assume that means either I'm not really running under mod_perl like I through, of there's something flaky going on. Here's my httpd.conf chunk that I added to install AxKit... PerlModule AxKit <VirtualHost 127.0.0.1:8080> ServerAdmin [EMAIL PROTECTED] DocumentRoot "C:/devkit/www/website" ErrorLog "C:/devkit/www/logs/error.log" <Directory "C:/devkit/www/website/axkit"> Options -All +Indexes DirectoryIndex index.xsp AddHandler axkit .xml .xsp AxDebugLevel 10 AxGzipOutput On AxAddXSPTaglib AxKit::XSP::Util AxAddStyleMap application/x-xsp Apache::AxKit::Language::XSP </Directory> </VirtualHost> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
