> Hello There,
> 
> I would like to see if my ISP has perl available if one 
> wanted to incorporate perl into a web page.  Is there a quick 
> and dirty web page I can upload to my ISP to test if perl is
Try this:

test.cgi
#!/usr/bin/perl -w

use strict;
use CGI 'header';
print header();
print "/usr/bin/perl Is VERSION $]";

- Ftp in ascii
- chmod to 755

However this is assuming:
- Perl is at /usr/bin/perl
- it's on a unix server
- 755 is what it needs to be
- .cgi is the extension you need
- you're user is allowed

All of which is basically what you're trying to find out.
I'd just call your isp and say:
- What is the path to Perl?
- How do I upload/execute Perl scripts in my webspace?

HTH

DMuey

> available and works ?  I would also like to see what version 
> of perl is running ?
> 
> Could someone post something here that I can run ?  
> 
> TIA

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

Reply via email to