Apache-MiniWiki

 view release on metacpan or  search on metacpan

conf/httpd-perl-startup.pl  view on Meta::CPAN

In httpd.conf:
	PerlRequire /etc/httpd/perl/httpd-perl-startup.pl

=head1 VARIABLES

=cut

use strict;
use warnings;

use lib qw( /etc/httpd/perl/lib );

use Apache::MiniWiki;

=head2 $wikidir
The directory where all your Wikis are located,
in individual subdirectories of their own.
=cut
my $wikidir = '/var/www/MiniWiki';

=head2 $wikipasswdfile

test.pl  view on Meta::CPAN

#!/usr/bin/perl


use lib qw(blib/lib);

use Test::Simple tests => 1;

use Apache::MiniWiki;

ok ($Apache::MiniWiki::VERSION >= 0.82, "loaded Apache::MiniWiki >= 0.82");




( run in 0.366 second using v1.01-cache-2.11-cpan-3cd7ad12f66 )