I have some perl modules which are intergreted in a cgi script which runs on a web server. How can I simply convert these modules to a mod_perl handler?
Thanks.
I have some perl modules which are intergreted in a cgi script which runs on a web server. How can I simply convert these modules to a mod_perl handler?
Thanks.
Copyright © 2021 Jogjafile Inc.
If all you want is for mod_perl to make your code cached/faster, then...
Just add the following to your Apache host configuration:
In
startup-script.pl
set up your include path (if needed) withuse lib
.Then you can just use
CGI::Simple
as before.