This is a discussion on perl file(.pl) file in my htaccess doesn't work within the Apache Web Server forums, part of the Web Server and Related Forums category; I don't know why this doesn't work in my htaccess, every user who visits the site a perl ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
I don't know why this doesn't work in my htaccess, every user who visits the
site a perl program is supposed to run, which sows the time, however this doesn't work at all, is there a particular set of rules to use a perl file ..pl in an htaccess file? |
|
|||
|
"Nospam" <nospam@home.com> wrote in
news:gniEg.2$HO5.1@newsfe6-win.ntli.net: > I don't know why this doesn't work in my htaccess, every user who > visits the site a perl program is supposed to run, which sows the > time, however this doesn't work at all, is there a particular set of > rules to use a perl file .pl in an htaccess file? My clock works just fine. I have one on my computer, one on my desk, and one on the cell phone attached to my belt. Do I really need your site to tell me the time? -- Karl Groves www.karlcore.com |
|
|||
|
On Tue, 15 Aug 2006 11:38:52 GMT, "Nospam" <nospam@home.com> wrote:
>I don't know why this doesn't work in my htaccess, every user who visits the >site a perl program is supposed to run, which sows the time, however this >doesn't work at all, is there a particular set of rules to use a perl file >.pl in an htaccess file? In simple terms... Perl is a server-side scripting language called through CGI. .htaccess is an additional configuration file for the Apache web server. Within a web page you may, for example use something like: <img src="perl_clock.pl"> To automaticaly call a Perl program which returns an image to be displayed. You will have to check your server's configuration to establish: 1) If perl scripting is enabled 2) In which directory CGI execution is allowed. If the server is not your own, but is on a shared hosting service, then contact the host for assistance. Matt -- A comprehensive who's who of the world's mythologies. http://www.probertencyclopaedia.com/mythology.htm |
|
|||
|
Matt Probert wrote:
> Perl is a server-side scripting language called through CGI. Perl is a general programming language that can be used by webservers through CGI and other interfaces (including mod_perl and FastCGI). -- David Dorward <http://blog.dorward.me.uk/> <http://dorward.me.uk/> Home is where the ~/.bashrc is |