Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Using ModPerl::Registry without root

by dmorgo (Pilgrim)
on May 22, 2004 at 21:26 UTC ( [id://355625]=perltutorial: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    LoadModule perl_module modules/mod_perl.so
    # ...
    ...
        PerlOptions +ParseHeaders
      </Location>
    </IfModule>
    
  2. or download this
    <FilesMatch "modperl-test.pl">
        SetHandler  perl-script
    ...
        Options +ExecCGI
        PerlSendHeader on
    </FilesMatch>
    
  3. or download this
    package TestModPerl;
    
    ...
    1;
    __END__
    # apparently in mod_perl2 having __END__ is OK.
    
  4. or download this
    #!/usr/bin/perl
    
    ...
    print "Content-type: text/html\n\n";
    TestModPerl::run();
    TestModPerl::total();
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perltutorial [id://355625]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (5)
As of 2024-04-25 17:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found