Help for this page

Select Code to Download


  1. or download this
    BEGIN {
    my $path=$0;
    $path=~s{[^\/]+$}{libs/};
    }
    use lib $path;
    
  2. or download this
    <virtualhost *:80>
    # ...
    PerlSetVar libpath "/path/to/your/libs/";
    </virtualhost>
    
  3. or download this
    BEGIN {
    my $path=$r->dir_config("libpath");
    }
    use lib $path;