>>>>> "Octavian" == Octavian Rasnita <[EMAIL PROTECTED]> writes:

Octavian> Hmm, are you telling that I can create a perl file and name
Octavian> it file.html, file.php, or even file.asp, and use a shebang
Octavian> line in it, then it will be parsed as a perl file?

Octavian> Or I need to use extensions that are not set in the server's
Octavian> conf file to be parsed as other types?

It all depends on the way you configure your server.

For example, with Apache, anything below a ScriptAlias directory is
automatically interpreted with mod_cgi, regardless of the extension.  So,
if I have in my httpd.conf:

        ScriptAlias /cgi /some/unix/path

and then put my Perl script "register" into /some/unix/path/register
with the right shebang line and executable bit set, I can invoke

        http://my.host.example.com/cgi/register

and it runs my script.  You can't tell what implements it.  In fact,
you could even make it "register.html" for all that it matters (none!).

-- 
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<[EMAIL PROTECTED]> <URL:http://www.stonehenge.com/merlyn/>
Perl/Unix/security consulting, Technical writing, Comedy, etc. etc.
See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl training!

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to