Apache-DB

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

 }

Debian patches added (https://salsa.debian.org/perl-team/modules/packages/libapache-db-perl)

=item 0.14 - April 27, 2008

Added patch from Niko Tyni which fixes Apache::DB for use with Perl 5.10

=item 0.13 - April 17, 2006 

Fixed Apache::DProf and Apache::SmallProf to work when using taint mode. 

=item 0.12 - April 3, 2006 

Fixed mod_perl 1.x bug in Apache::SmallProf that was using mp2 code mistakenly.

Add $ENV{APACHE_DPROF_PATH_ABSOLUTE} override for those unlucky soles 
that can NOT write to ServerRoot.  [Philip M. Gollucci <pgollucci@p6m7g8.com>]

=item 0.11 - January 24, 2006 

lib/Apache/SmallProf.pm  view on Meta::CPAN

    if (MP2) { 
        $dir = Apache2::ServerUtil::server_root(); 
    }
    else { 
        $dir = $r->server_root_relative; 
    }

    my $sdir = $r->dir_config('SmallProfDir') || 'logs/smallprof';
	$dir = "$dir/$sdir"; 

    # Untaint $dir 
    $dir =~ m/^(.*?)$/; $dir = $1; 

    mkdir $dir, 0755 unless -d $dir;

    # Die if we can't make the directory 
	die "$dir does not exist: $!" if !-d $dir; 

    (my $uri = $r->uri) =~ s,/,::,g;
    $uri =~ s/^:+//;



( run in 0.259 second using v1.01-cache-2.11-cpan-d6f9594c0a5 )