Thread Mal wieder Probleme: MySQL und ModPerl (47 answers)
Opened by GwenDragon at 2006-04-11 15:33

GwenDragon
 2006-04-13 21:02
#30065 #30065
User since
2005-01-17
14608 Artikel
Admin1
[Homepage]
user image
Das wäre deine Datei für Apache2. Schön brav die alten .conf-Dateien sichern!
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
$ENV{MOD_PERL} =~/^mod_perl/ or die "not running under mod_perl!";

use lib qw(/srv/www/perl-lib);

# enable if the mod_perl 1.0 compatibility is needed
use Apache2::compat ();

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

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

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

use APR::Table ();

use ModPerl::Registry ();

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

use Apache::DBI();
use DBI();

# Load CGI.pm and call its compile() method to precompile
# (but not to import) its autoloaded methods.
use CGI ();
CGI->compile(':all');

1;


Ob das dein Problem löst, weiß ich nicht. Ich hoffe.\n\n

<!--EDIT|GwenDragon|1144948062-->

View full thread Mal wieder Probleme: MySQL und ModPerl