1docs::api::Apache2::porUtsienrg(C3o)ntributed Perl Documdeonctsa:t:iaopni::Apache2::porting(3)
2
3
4
6 Apache2::porting -- a helper module for mod_perl 1.0 to mod_perl 2.0
7 porting
8
10 # either add at the very beginning of startup.pl
11 use Apache2::porting;
12
13 # or httpd.conf
14 PerlModule Apache2::porting
15
16 # now issue requests and look at the error_log file for hints
17
19 "Apache2::porting" helps to port mod_perl 1.0 code to run under
20 mod_perl 2.0. It doesn't provide any back-compatibility functionality,
21 however it knows to trap methods calls that are no longer in the
22 mod_perl 2.0 API and tell what should be used instead if at all. If you
23 attempts to use mod_perl 2.0 methods without first loading the modules
24 that contain them, it will tell you which modules you need to load.
25 Finally if your code tries to load modules that no longer exist in
26 mod_perl 2.0 it'll also tell you what are the modules that should be
27 used instead.
28
29 "Apache2::porting" communicates with users via the error_log file.
30 Everytime it traps a problem, it logs the solution (if it finds one) to
31 the error log file. If you use this module coupled with
32 "Apache2::Reload" you will be able to port your applications quickly
33 without needing to restart the server on every modification.
34
35 It starts to work only when child process start and doesn't work for
36 the code that gets loaded at the server startup. This limitation is
37 explained in the Culprits section.
38
39 It relies heavily on "ModPerl::MethodLookup". which can also be used
40 manually to lookup things.
41
43 "Apache2::porting" uses the "UNIVERSAL::AUTOLOAD" function to provide
44 its functionality. However it seems to be impossible to create
45 "UNIVERSAL::AUTOLOAD" at the server startup, Apache segfaults on
46 restart. Therefore it performs the setting of "UNIVERSAL::AUTOLOAD"
47 only during the child_init phase, when child processes start. As a
48 result it can't help you with things that get preloaded at the server
49 startup.
50
51 If you know how to resolve this problem, please let us know. To
52 reproduce the problem try to use an earlier phase, e.g.
53 "PerlPostConfigHandler":
54
55 Apache2::ServerUtil->server->push_handlers(PerlPostConfigHandler => \&porting_autoload);
56
57 META: Though there is a better solution at work, which assigns AUTOLOAD
58 for each class separately, instead of using UNIVERSAL. See the
59 discussion on the dev list (hint: search the archive for EazyLife)
60
62 mod_perl 2.0 documentation.
63
65 mod_perl 2.0 and its core modules are copyrighted under The Apache
66 Software License, Version 2.0.
67
69 The mod_perl development team and numerous contributors.
70
71
72
73perl v5.12.0 2007-11-12 docs::api::Apache2::porting(3)