Thread Findet meine Module nicht (4 answers)
Opened by esskar at 2005-03-11 21:30

GwenDragon
 2005-03-11 21:57
#31012 #31012
User since
2005-01-17
14748 Artikel
Admin1
[Homepage]
user image
Mein Startup-Skript für mod_perl sieht so aus:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#### startup.pl
##
##    StartUp file for mod_perl
##
##

use Apache2 ();

use lib qw (
    X:/usr/local/apache/perl
    X:/usr/local/perl/lib
    X:/usr/local/perl/site/lib
);

#für mod_perl_1-Kompatibilität
use Apache::compat ();

use ModPerl::Util (); #for CORE::GLOBAL::exit

use Apache::RequestRec ();
use Apache::RequestIO ();
use Apache::RequestUtil ();

use Apache::Session ();

use Apache::ServerRec ();
use Apache::ServerUtil ();
use Apache::Connection ();
use Apache::Log ();

use APR::Table ();

use ModPerl::Registry ();

use Apache::Const -compile => ':common';
use APR::Const -compile => ':common';

use CGI ();

1;


edit: Doppelpost gelöscht!\n\n

<!--EDIT|[E|B]|1110574066-->

View full thread Findet meine Module nicht