in reply to Re: Re(4)^2: Apache and HTML::Mason::CGIHandler, Not being called?
in thread Apache and HTML::Mason::CGIHandler, Not being called?

Ok, once I've moved mod_perl.so into position, what do I need to do to enable it? I see no settings commented out in the settings file for mod_perl (just about every other mod_ you can imagine, but not mod_perl)

Thanks for all this help, youre a life-saver (take that however you choose, if you wish to be candy, so be it)



My code doesn't have bugs, it just develops random features.

Flame ~ Lead Programmer: GMS | GMS

  • Comment on Re(6): Apache and HTML::Mason::CGIHandler, Not being called?

Replies are listed 'Best First'.
Re: Re(6): Apache and HTML::Mason::CGIHandler, Not being called?
by rdfield (Priest) on Nov 01, 2002 at 14:16 UTC
    In the httpd.conf file there will be a whole bunch of commented-out lines that start:
    #LoadModule foo_module modules/mod_foo.so
    where foo is something like proxy, digest, usertrack etc. At the end of this list add the line:
    LoadModule perl_module modules/mod_perl.so
    In the section after that you'll see something like:
    ClearModuleList ... AddModule mod_foo.c ...
    add the following line to the end of the list:
    AddModule mod_perl.c
    Note: the capitalisation is important. You should have a working mod_perl installation after this.

    When your Apache server starts you should see somthing like:

    Apache/1.3.26 (Win32) mod_perl/1.27_01-dev running...
    I'll update my original instructions appropriately so that the next monk who wanders along with a mod_perl/win32 install problem doesn't have to go through all of your frustrations.

    BTW, you're welcome.

    rdfield

      Apache/1.3.27 (Win32) mod_perl/1.27_01-dev running...

      Sweet!!! Thanks! IT FINALLY WORKS! ok... thats enough... (/me calms down) Now I can finally continue that project.

      *rdfield++; # For all your patience





      My code doesn't have bugs, it just develops random features.

      Flame ~ Lead Programmer: GMS | GMS