Is it possible to run Perl script in web server without using CGI?
I mean, like php scripts (run any .pl file without #!/path/to/interpreter
line).
If Yes, How?
Thanks
|
yes, with the
|
|||
Yes. If you are using Apache, the canonical way to do this is to use mod_perl. Note: mod_perl is more than just a Perl handler for Apache; it provides a standard interface (and many helper functions) for communicating with the webserver. |
||||
|
Take a look at PSGI/Plack. It's Perl <--> web server without CGI.
|
|||
|